@import url('https://fonts.googleapis.com/css2?family=Martel:wght@200;300;400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    Font-family: 'Martel', serif;
    font-size: 1vmin;
    overflow-x: hidden;
}

#section1 {
    width: 100vw; /* Viewport width */
    height: 100vh; /* Viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1d7151; /* Optional: background color */

    h1, p {
        color: #f6f6e9; /* Optional: text color */
        text-align: center;
    }
    h1 {
        font-size: 8rem;
        font-weight: 700;
        margin-bottom: -4rem;
    }
    p {
        margin-top: -4rem;
        font-size: 2rem;
        font-weight: 100;
    }
}

#section2 {
    width: 100vw; /* Viewport width */
    background-color: #f6f6e9; /* Optional: background color */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10rem;
    color: #7b3911;
    .subsection{
        /* for large screens only 
        padding-right: 9rem;
        */
        margin: 3rem;
    }
    h2{
        font-size: 8rem;
        text-align: center;
        font-weight: 500;
    }
    h3 {
        font-size: 3rem;
        text-align: left;
        font-weight: 200;
    }
    p {
        font-size: 1.5rem;
        text-align: justify;
        font-weight: 100;
        padding: 1rem;
    }
}

#section3 {
    width: 100vw; /* Viewport width */
    background-color: #dc661f; 
    padding: 5rem;
    color: #f6f6e9;
    display: flex;
    justify-content: center;
    align-items: center;
    h2 {
        font-size: 8rem;
        text-align: center;
        font-weight: 500;
    }
    .email {
        text-align: center;
        font-size: 3rem;
        font-weight: 500;
        a {
            color: #f6f6e9;
            text-decoration: none;
        }
        padding-bottom: 3rem;
    }
    .address {
        padding-top: 3rem;
        text-align: center;
        font-size: 3rem;
        font-weight: 500;
    }
}
footer {
    width: 100vw;
    background-color: #dc661f; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 100;
    text-align: center;
    color: #f6f6e9;
}
