body{
    margin: 0px;
    font-family: "Ubuntu";
}
nav {
    background-color: rgb(12, 12, 12);
    height: 3rem;
    align-items: center;
    color: white;
    font-size: 2rem;
    padding-left: 1rem;
    display: flex;
}

.container{
    width: 40rem;
    height: 40rem;
    background-color: red;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    background-color: rgba(0,0,0,.05);
    border-radius: 2rem;
}
input[type="text"]{
    padding: 0.5rem;
    font-size: 1.5rem;
    border-radius: 10px;
    background-color: white;
    border: solid white 4px;
    outline: none;
    transition: ease-in-out 0.2s;
}
input[type="text"]:focus{
    box-shadow: 0px 0px 1px 4px rgba(13, 110, 253, 0.5);
}

button{
    font-family: "Ubuntu";
    font-size: 2rem;
    width: 10rem;
    height: 3rem;
    background-color: #0D6EFD;
    color: white;
    border: solid white 0px;
    border-radius: 1rem;
    margin-top: 1rem;
    transition: 0.15s ease-in;
    cursor: pointer;
    
    border: solid rgb(0, 0, 0,.05) 4px;
}
button:hover{
    background-color: #0b5ed7;
    box-shadow: 0px 0px 0.5px  2px #0d6efd;
    scale: 1.03;
}
nav>a:hover{
    color: rgb(255,255,255, 0.8) !important;
}