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

:root{
    --primary-dark:#1F2937;
    --primary-green:#6EEfB7;
}


body{
    display: flex;
    justify-content: center;
    color: var(--primary-green);
    background-color: var(--primary-dark);
}


.container{
    margin-top: auto;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    border: 5px solid black;
    align-items: center;
    flex-direction: column;
}

.contents{
    margin: 4rem;
    /* border: 1px solid red; */
    width: 50vw;
    display: block;
}

h1{
    text-align: center;
    font-size: 3rem;
    /* margin-bottom: 4rem; */
}
input,label{
    display: block;
    font-size: 1.5rem;
}

input{
    margin-bottom: 1rem;
    width: 100%;
}

span{
        display: flex;
        align-items: center;
        flex-direction: column;
}

button{
    margin: 2rem;
    font-size: 1.2rem;
    padding: .5rem 1rem;
    border: 0px;
    border-radius: 0.9rem;
    color: #1F2937;
    cursor: pointer;
    background-color: var(--primary-green);
}

button:hover{
    box-shadow: 0rem 0rem 1rem var(--primary-green);
    transition: .5s;
    font-size: 1.3rem;
    color: white;
}

p{
    height: fit-content;
    width: fit-content;
    border: 1px solid;
    border-radius: 0.5rem;
    background-color: #495669;
    color: var(--primary-green);
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 1.7rem;
    padding: 1rem;
    visibility: hidden;
}

footer{
    height: 5rem;
    display: flex;
    justify-content: center;
    position: static;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 90vw;
    /* border: 3px solid red; */
    background-color: #353c46;
}

footer ul{
    display: flex;
    flex-wrap: nowrap;
}

a{
    text-decoration: none;
    color: var(--primary-green);
    font-size: 1.2rem;
}



li{
    list-style: none;
    display: inline;
    margin: 0rem 2rem;
}