@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@media(prefers-reduced-motion: no-preference){
    *{
        scroll-behavior: smooth;
    }
}
@media only screen and (max-width: 600px){
    body{
        width: 100vw;
        height: 100vh;
    }
}
*{
    box-sizing: border-box;
}
body{
    font-family: Poppins,serif;
    font-size: clamp(1.25rem, 0.25rem + 1.25vw, 1.75rem);
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
}
/*Navigation Bar Section*/
header{
    height: 6.5vh;
}
nav > ul{
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    padding-left: 35%;
}
nav > ul > li{
    display: inline-block;
    color: black; 
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: clamp(1rem, 0.3rem + 0.875vw, 1.35rem);
    letter-spacing: -0.5px;
}
nav > ul > li a{
    color: inherit;
    text-decoration: none;
}
nav > ul > li a:hover{
    color: #135480; /*change color, option 1: #626567*/
    font-size: clamp(1.15rem, 0.45rem + 0.875vw, 1.5rem);
}

/*2nd Nav section*/
.nav-2{
    padding-top: calc(0.5rem + 1vh);
    padding-left: 20%;/*calc(8rem + 1vw)*/
    padding-bottom: calc(1rem + 1vh);
    font-size: clamp(1rem, 0.5rem + 0.625vw, 1.25rem);
}

.nav-2 a{
    color: inherit;
    text-decoration: none;
}

.nav-2 a:hover{
    text-decoration: underline;
}

/*Comments*/
.comments{
    font-size: clamp(1rem, 0.5rem + 0.625vw, 1.25rem);
    text-align: right;
    padding-right: 20%;
}

/*Contact Us Section*/
.contact{
    margin: 0;
    color: #fff;
    background-color: black;
    display: grid;
    align-items: end;
}
#contact-us{
    display: flex;
    justify-content: center;
}
#contact-us span{
    padding: 0 0.5rem;
}
.contact-us-1{
    font-family: Poppins, serif;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    border-radius:7px;
    border: none;
}
.contact-us-1 a{
    text-decoration: none;
    color: inherit;
}
.contact-us-1:hover{
    background-color: #d6eaf8;
    cursor: pointer;
}

#signature{
    font-size: clamp(1rem, 0.5rem + 0.625vw, 1.25rem);
    text-align: center;
}