.contenido {
    justify-content: center;
    width: 100%;
    height: 15vh;
    display: flex;
}

body {
    background-color: white;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;

}

.grupob {
    margin-top: 100px;
}

.boton {
    background-color: royalblue;
    border: 50px;
    padding: 5px 32px;
    width: auto;
    height: 30px;
    text-align: center;
    color: white;
    font-size: 20px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    margin: 12px;
    text-transform: uppercase;
    transition-duration: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    font-family: Roboto;
    font-weight: 300;
}

.boton:hover {
    background-color: rgb(77, 117, 238);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.logo {
    color: black;
    text-transform: uppercase;

}