body{
    background-image: url(../img/bg.jpg), radial-gradient(transparent, rgba(0,0,0,.8));
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.wrapper{
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: rgba(0,0,0,.7);
    box-shadow: 0 0 1rem rgba(0,0,0,.2);
}

@media (min-width: 768px){
    .wrapper{
        padding: 10rem 6rem;
    }
}

.wrapper h1{
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    max-width: 35rem;
    text-align: center;
}

.wrapper p{
    text-align: center;
    margin-bottom: 4rem;
    max-width: 25rem;
}

.wrapper .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    row-gap: 1rem;
    flex-wrap: wrap;
}

.wrapper .buttons a{
    display: block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #000;
    background-color: #fff;
}

.wrapper .buttons a:is(:hover, :focus, :active){
    background-color: #000;
    color: #fff;
}