*{
    background-color: bisque;
    
    color: black;
    padding: 0px;
    margin: 0px;

}
.nav-bar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    border-bottom: 2px solid black;
    background-color: black;
    padding: 20px 5vw;

}

.nav-bar a{
    text-decoration: none;
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    background-color: black;
    padding: 8px;
}
.nav-bar a:hover{
    color: blanchedalmond;
    border: 2px blanchedalmond solid;
    padding: 10px;
    border-radius: 2px;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35vw;
    margin: auto;
    padding-top: 100px;
}
label{
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 550;
}

input{
    padding: 10px;
}
input:hover{
    color: bisque;
    background-color: black;
}

button{
    margin-top: 30px;
    padding: 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}


#traingle-check-button:hover{
    color: bisque;
    background-color: black;
}

.containers{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}