body {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: "comic sans ms", Verdana, Tahoma, sans-serif;
    overflow: auto;
}

.app_container {
    position: relative;
    width: 30%;
    min-width: 250px;
    margin: -1% auto 0px auto;
 
}

@keyframes identifier {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-25px);
    }
    100%{
        transform: translateY(0);
    }
}


.app_logo{
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 800;
    font-size: 30pt;
    color: rgba(30, 144, 255, 1);
    animation: identifier 5s ease-in-out infinite;
}
 legend{
    font-size: 20pt;
 }
fieldset{
    border: none;
    border-top: 3px solid rgba(30, 144, 255, 1);
}
.field input, select{
    width: 100%;
    height: 35px;
    padding-left: 10px;
    border: 2px solid rgba(30, 144, 255, 1);
    border-radius: 30px;
    margin: 8px 0;
}
label{
    margin-left: 15px;
}
span{
    text-align: center;
}
 
.buttons{
    text-align:  center;
}
img{
    width: 250px;
    height: 200px;
}
.buttons input{
    width: 100%;
    margin: 2px;
    padding: 10px 10px;
    font-weight: bold;
    border: 2px solid rgba(30, 144, 255, 1);
    color: white;
    background-color: rgba(30, 144, 255, 1);
    cursor: pointer;
    border-radius: 14px;
}
footer{
    position: relative;
    bottom: 0;
    margin: 10% auto 0 auto;
    background-color: antiquewhite;
    padding: 5%;
    border-radius: 15px;
    font-size: 15pt;
}
li{
    text-decoration: 0;
}
li a{
    text-decoration: 0;
    color: black;
}
a input{
    width: 100%;
    margin: 2px;
    padding: 10px 10px;
    font-weight: bold;
    border: 2px solid rgba(30, 144, 255, 1);
    color: black;
    background-color: transparent;
    cursor: pointer;
    border-radius: 14px; 
}

 