body{
    font-family: initial;
    background-color: #111111;
}

nav{
    position: sticky;
}

#main{

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 88vh;}

form{
    border: 1px solid yellow;
    height: 670px;
    width: 41em;
    background-color: #3d3d3d;
    border-radius: 12px;
    margin-top: 2%;
}

input{
    margin: 2%;
    height: 45px;
    border-radius: 6px;
    width: 400px;
    border: 0.5px solid yellow;
    font-family: initial;
    background-color: #3c3c3c;
    color: white;
    padding-left: 10px;
}
input:nth-of-type(1){
    margin-top: 5%;
}

button{
    background-color: #3c3c3c;
    height: 7%;
    width: 20%;
    border: 0.6px solid yellow;
    border-radius: 6px;
    margin: 2%;
    color: white;
    font-family: initial;
}

button:hover{
    height: 7.5%;
    width: 20.5%;
}

form img{
    border: 1px solid black;
    margin-top: 5%;
}

form a{
    margin-left: 19rem;
    color: white;
    font-size: 15px;
}
form a:hover{
    font-size: 16px;
}

img{
    border-radius: 15px;
}

@media only screen and (max-width: 667px) and (min-width: 375px){
    form{
        border: 1px solid yellow;
        height: 580px;
        background-color: #3d3d3d;
        border-radius: 12px;
    }
    input{
        height: 32px;
        border-radius: 6px;
        width: 286px;
        border: 0.5px solid yellow;
        background-color: #3c3c3c;
        color: white;
        font-family: initial;
        padding-left: 10px;
    }

    form img{
        border: 1px solid black;
        margin-top: 65px;
    }
    
}