body {
    background: url('desert-background.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease;
    z-index: 1000;
}

#loading-screen img {
    width: 20%;
}

#main-content.home {
    display: none;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    width: 80%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    box-sizing: border-box;
    transition: opacity 1s ease;
}

#main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    width: 80%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 5px 20px;
    position: static;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 18.75%;
}

nav {
    position: absolute;
    left: 20px;
    top: 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #40E0D0;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #40E0D0;
    opacity: 0.8;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

main {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

main > p {
    background: transparent;
    padding: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border: none;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    background-color: transparent;
}

.text-container.text-container-right {
    align-items: flex-end;
    justify-content: flex-start;
}

.grid-title {
    color: turquoise;
    font-size: 24px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    margin-bottom: 10px;
}

.grid-title:hover {
    text-decoration: underline;
}

.blurb {
    width: 100%;
    height: 125px;
    background-color: transparent;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.contact-link {
    margin-top: 20px;
    font-size: 18px;
    color: black;
}

.contact-link a {
    color: black;
    text-decoration: none;
}

.contact-link a:hover {
    text-decoration: underline;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-row {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

input, textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
}

input:last-child, textarea {
    margin-right: 0;
}

button {
    padding: 10px 20px;
    background-color: #40E0D0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #36c1b3;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background-color: #40E0D0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #36c1b3;
}
