.contenedorWeb {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
img {
    width: 100%;
    height: auto;
}
h1, h2 {
    text-align: center;
    font-family: 'Antonio', sans-serif;
    color: darkblue;
}
h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2rem;
}
a {
    text-decoration: none;
    color: aliceblue;
    font-size: 1.5rem;
    text-align: center;
}
.enlace {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 60px;
    background-color: orange;
    border-radius: 50px;
    border: none;
    box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.5);
}
.enlace:hover {
    background-color: rgb(250, 115, 5);
}
