*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(88, 2, 168);
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 952px;     
}
header{
    display: flex;
    justify-content: flex-end;
}
.idioma{
    margin-top: 3px;
    width: 25px;
    height: 25px;
}
#idioma{
    padding: 2px 10px;
    border-radius: 15px;
    background: white;
    margin: 15px 15px;
    align-content: center;
    justify-content: center;
}
#idioma a{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    color: rgb(51, 51, 51)
}
#idioma:hover{
    border: blue solid 5px;
}

#main-container{
    flex-direction: column;
    display: flex;
    align-items: center;
}
#logo img{
    margin-bottom: 2px;
}
.style{
    background-color: rgb(51, 51, 51);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: white;
    padding: 5px 60px 5px;
    border-radius: 5px;  
    border-width: 0;
    width: 207px;
    height: 33px;  
}
.style:hover{
    border: rgb(0, 0, 0) solid;
}
#pin-box{
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 15px 35px 15px;
    border-radius: 5px;
}
#pin-box input{
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    font-weight: bold;
    border: grey solid;
    padding: 5px 0 5px;
    border-radius: 5px;

}
footer{
    flex-direction: column;
    display: flex;
    justify-content: end;
    align-content: center;
    align-items: center;
}
footer span{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    font-weight: bold;
}
footer li{
    list-style-type: none;
    display: inline-block;
}
footer li a{
    text-decoration: none;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: 0.85rem;
    
}
footer li:first-child a::after{
    content: " | ";
}
