.home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 120vh;
    /* background-image: url('../images/beach-boat.png');
    background-size: cover;
    background-position: top center; */
    padding-bottom: 2rem;
}

.home-text__wrapper {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-text {
    color: #ffffffe8;
    font-size: 1.5rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    padding: auto 1rem;
}

.home-text p.font__freehand {
    font-family: 'Freehand', cursive;
    font-size: 3rem;
    color: #fff;
}

.facilities {
   background-color: #fff;
   border-radius: 10px;
   padding: .8rem 2rem;
   margin-bottom: 2.5rem;
}

.facilities .facility {
   text-align: center;
   padding: 1rem 2.5rem;
}

.box + .box {
    border-top: 1px solid rgb(44, 44, 159);
}

.facilities a {
    display: block;
    font-family: 'Roboto', sans-serif;
    color: rgb(44, 44, 159);
}

.explore-more {
    color: #ffffffc5;
    padding: 1em 2em;
    border: 1px solid;
    font-family: 'Roboto', sans-serif;
    border-radius: 10px;
    transition: 0.4s;
}

.explore-more:hover {
    background-color: #ffffffc5;
    color: rgb(44, 44, 159);
    border-color: transparent;
}

/*************** Media queries ****************/

@media (min-width: 768px) {
    .facilities {
        display: flex;
        justify-content: center;
    }

    .box + .box {
        border-top: unset;
        border-left: 1px solid rgb(44, 44, 159);
    }
}

@media (min-width: 850px) {
    .home-text {
        font-size: 2.5rem;
    }
}


