/* These styles deal across the board styling */

body {
    color: #1a1b1f;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    visibility: hidden;
    background-color: darkgray;
}

strong {
    margin-top: 10px;
}

textarea {
    color: #1a1b1f;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.content-container {
    background-color: darkturquoise;
    margin-top: 100px;
}

.section {
    margin-left: 0;
    margin-right: 0;
    display: flex;
}

.my-section {
    padding: 25px 10px;
}

.my-section-last {
    padding-top: 0;
}

.button {
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
    line-height: 26px;
    text-decoration: none;
    transition: background-color .4s, opacity .4s, color .4s;
    float: left;
    color: #fff;
    text-align: center;
}

.button:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

h1 {
    font-family: 'Montserrat', cursive;
    font-weight: 700; /* Use bold weight for headers */
    font-size: 4rem;
    margin: 0 0 25px 0;
    color: darkturquoise; /* Optional: Add a custom color for headers */
    text-align: center;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    color: black;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-block-start: 0;
    margin-block-end: 0;
    font-size: 16px;
}

.header-section {
    display: flex;
    justify-content: center;
    background-color: #f4f4f4;
    margin-left: 25%;
    margin-right: 25%;
    padding-top: 20px;
    box-shadow: 3px 5px 5px #0003;
}

.top-section {
    background-color: #f4f4f4;
    width: 100%;
    box-shadow: 3px 5px 5px #0003;
}

.left {
    background-color: #f4f4f4;
    width: 50%;
    box-shadow: 20px 2px 5px #0003;
}

.right {
    background-size: 100% 100%; 
    background-repeat: no-repeat;
    width: 50%;
    box-shadow: -30px 0px 20px 0px #0003;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sign-up {
    margin: 5% 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-right {
    background-image: url('/images/home-page.jpg');
    background-size: cover;
    background-position: 0 80%;
    width: 50%;
    box-shadow: -30px 0px 20px 0px #0003;
}

.right {
    width: 50%;
}


.left {
    background-color: darkgray;
    width: 100%;
}


.about-left {
    background-color: #f4f4f4;
    width: 50%;
    box-shadow: 20px 2px 5px #0003;
}

.about-content {
    margin: 5% 15%;
}

.info {
    margin-bottom: 5px;
}

.grid {
    display: grid;
    gap: 16px;
}

@media (max-width: 1220px) {

    h1 { 
        font-size: 3rem;
    }


}

@media (max-width: 1040px) {

    .section {
        flex-direction: column-reverse;
    }

    .right { 
        width: 100%;
        min-height: 450px;
    }

    .left { 
        width: 100%;
        box-shadow: 0px 2px 5px #0003;
    }

    .content {
        margin: 0% 0%;
    }

}

@media (max-width: 768px) {

    .right { 
        min-height: 350px;
    }

    .left { 
        width: 100%;
    }

} 

@media (max-width: 650px) {

    .header-section {
        margin-left: 10%;
        margin-right: 10%;
    }

    .sign-up {
        margin: 5% 10%;
    }

}

@media (max-width: 500px) {

    .button {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 2px;
    }

    body { 
        font-size: 14px;
    }

    h3 {
        font-size: 14px;
    }

    .right { 
        min-height: 275px;
    }

    .content-container {
        margin-top: 80px;
    }
}

@media (max-width: 450px) {

    h1 { 
        font-size: 2rem;
        margin: 0 0 0 0;
    }

    .header-section {
        padding-top: 10px;
        padding-bottom: 10px;
    }

}

@media (max-width: 400px) {

    .right { 
        min-height: 200px;
    }
}

