@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}


.conainer{
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}


img{
    margin-bottom: 20px;
}


label{
    width: 100%;
    text-align: center;
}


.titulo{
    font-size: 25px;
    color: #566A7F;
    border-bottom: 20px;
}


.recomendacion{
    font-size: 15px;
    color: #8592A3;
}


a{
    margin-top: 20px;
    text-decoration: none;
    border: 1px solid #8592A3;
    padding: 15px 20px;
    border-radius: 3px;
    background-color: #DC4C64;
    color: white;
}


a:hover{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}