












body {
    background-color: #0f0f0f;
    margin: 0px;
    
    font-family: "Inter", sans-serif;
    color: white;
    font-weight: 400;
    line-height: 1.5;
}

h1{
    font-weight: 600;
    font-size: 6.5rem;
    line-height: 1;
}

h2{
    font-size: 3rem;
    line-height: 1;
}
h3{

    font-size: 5rem;
    line-height: 1;
}
h4{

    font-size: 3rem;
    line-height: 1;
}
h5{

    font-size: 1.5rem;
    line-height: 1;
    margin: 0;
}
h6{

    font-size: 1rem;
    line-height: 1.4;
}

p {

    font-size: 1rem;
}

.separator{
    width: 100%;



}
a {
    text-decoration: none;
    color: white;
}

.width-800 {
    max-width: 800px;
    width: 100%;
}





.bold {
    font-weight: 700;
}

.grey {
    color: #ffffff41;
}

.green {
    color: #41b78e;
}

hr.solid {
    border-top: 1px solid #ffffff;
}



.navbar {
    width: 100%;
    align-items: center;
    background-color: #ffffff00;
    position: fixed;
    top: 0;

    backdrop-filter: blur(10px);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2.5%;
}

.logo {
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    font-family: inter;
    text-wrap: nowrap;
    width: fit-content;
}

.navbar .nav-link:hover{
    transform: rotate(5deg);
    color: #555;
}

.navbar div a{
    color:inherit;

}

form{
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    padding-left: 5vw;
    padding-right: 5vw;
    gap:2.5vh;
    font-size: 1rem;
}

form div{
    display: flex;
    align-items: center;
    gap:2vw;
}

form div label{
    width:4.5rem;
}

form div input{
    min-height:3vh;
    max-width: 250px;
    width:calc(25vw + 2rem);
    text-overflow: ellipsis;
    background-color: rgb(88, 88, 88);
    border-color:rgb(196, 196, 196);
    border-width: 1px;
    box-sizing: border-box;
    color: #0f0f0f;
    box-shadow: none;
    outline: none;
    border-style: solid;
}

form div input::placeholder{
    color: #0f0f0f;
    font-family: "Inter", sans-serif;
}

form div input:focus{
    background-color: #dddddd;
    border-color:rgb(88, 88, 88);
    border-width: 2px;
    outline: none;
    border-style: solid;
}


#messageInput{
    max-width: 100rem;
    height:10vh;
    width:50vw;
    max-height: 6.5rem;
    background-color: rgb(88, 88, 88);
    border-color:rgb(196, 196, 196);
    border-width: 1px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    color: #0f0f0f;
}

#messageInput:focus{
    background-color: #dddddd;
    border-color:rgb(88, 88, 88);
    border-width: 2px;
    outline: transparent;

}

#messageInput::placeholder{
    color:#0f0f0f;
    font-family: "Inter", sans-serif;
}

form button{
    width: 3rem;
    aspect-ratio: 1/0.4;
    margin-left: calc(4.5rem + 2vw);
    background-color: rgb(88, 88, 88);
    border-color:rgb(196, 196, 196);
    color:#0f0f0f;
    font-family: "Inter", sans-serif;
    border-width: 1px;
    box-sizing: border-box;
}

@media (min-width: 1000px){
    form{
        font-size: 2rem;


    }
    form div{
        font-size: 1.5rem;
        gap:10vw;
    }
    form div input{
        font-size: 1.5rem;
    }
    #messageInput{
        font-size: 1.5rem;
        max-width: 150rem;
        height:15vh;
        width:50vw;
        max-height: 9.75rem;
    }
    form button{
        width:6rem;
        aspect-ratio: 1/0.4;
        font-size: 1.5rem;
        




    }
}

@media (max-width: 1000px) {
    form div{
        font-size: 1rem;
        gap:2vw;
    }
    form div input{
        font-size: 1rem;
    }
    form div textarea{
        font-size: 1rem;
        max-width: 100%;
        height:100%;
        width:100%;
        max-height: 100%;
}


@media (max-width: 600px) {
    form div{
        font-size: 0.75rem;
        gap:1vw;
    }
    form div input{
        font-size: 0.75rem;
    }
    form div textarea{
        font-size: 0.75rem;
        max-width: 75%;
        height:75%;
        width:100%;
        max-height: 100%;
}




