.div-banner {
    width: 100%;
    height: 100vh;
    background-image: url('../../assets/background/banner1.png');
    background-size: cover;
    background-position: top;

    display: grid;
    grid-template-rows: 1fr auto auto;
    justify-content: center;
    padding: 5rem;
}

.div-banner span {
    grid-row: 2/3;

    color: white;
    font-size: 8rem;
    font-weight: 900;

}

.div-banner .div-boton {
    grid-row: 3/4;

    height: 5rem;
    color: white;
    border: 3px solid white;
    padding: 2rem 4rem;
    border-radius: 35px;
    font-size: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.div-banner a {
    color: white;
    text-decoration: none;
    font-weight: 800;
}