.bg-beach {
    background-image: url('../images/bg-beach.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
}

.beach-container {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    padding: 100px 20px;
}

.beach-container .title-1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.beach-container .title-2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;

}


.beach-container .title-3 {
    font-size: 1rem;
    margin-bottom: 2rem;

}

.beach-container .btn-info {
    margin: 0 auto;
    margin-bottom: 1rem;
}


@media screen and (min-width: 1024px) {
    .beach-container {
        padding: 100px 40px;
    }

    .beach-container .title-1 {
        font-size: 3rem;
    }

    .beach-container .title-2 {
        font-size: 4rem;
    }

    .beach-container .title-3 {
        font-size: 1.5rem;
    }
    
}