*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: green;
}
body{
    margin: 0;
    padding: 0;
 }
 .container{
    width: 100vw;
    height: 100vh;
    background-color: beige;
    display: flex;
    justify-content: center;
    text-align: center;
 }
 .box{
    width: ;
    height: ;
    margin: 15px;
    background-color: green;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: logo 2s forwards;
 }
 .boxR{
    margin: 15px;
    background-color: green;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }
 .dash{
    margin: 15px;
    background-color: green;
    border-radius: 20px;
    display:block;
    justify-content: center;
 }
 .dash-box{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
 }
h1,input,button{
    margin: 10px 20px;
}
input,button{
    height: 30px;
    width: 250px;
    font-size: 16px;
    border-radius: 4px;
}
input{
    padding-left: 10px;
    font-family: serif;
    font-weight: 700;
}
h1{
    color: beige;
    font-family: sans-serif;
    font-weight: 800;
}
button{
    color: green;
    background-color: beige;
    border: none;
    font-weight: 700;
    font-family: auto;
    font-size: 20px;
}
button:hover{
    color: beige;
    background-color: green;
    border: 2px solid beige;
}
h5{
    margin-top:150px;
}

.logo{
    width: 70px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    margin-top: 306px;
    animation: appOpen 2s forwards;
}
.dash-img{
    margin-top: 100px;
    width: 150px;
    animation: dashImg 4s linear infinite;
}

@keyframes appOpen {
    0%{
        transform: scale(1);
        opacity: 1;
    }
    80%{
        transform: scale(1.1);
        opacity: 1;
    }
    100%{
        transform: scale(2);
        opacity: 0;
        visibility: hidden;
    }
}
@keyframes logo {
    0%{
        visibility: hidden;
        opacity: 0;
    }
    80%{
        visibility: hidden;
        opacity: 0;
    }
    100%{
        visibility: visible;
        opacity: 1;
    }
}
@keyframes dashImg{
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
h3 a{
    background-color: white;
    padding: 0 5px;
    margin: 10px 5px;
}