body {
    margin: 0;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

main {
    margin: 5px auto;
}

.hero {  
    max-height: 500px;
    margin: 5px 0;
}

.hero img {
    display: block;
    margin: 0 auto;
    border: none;
}

nav {
    display: flex !important;
    background-color: #C5494E;
    border-top: 2px solid #920D1D;
    border-bottom: 2px solid #920D1D;
    font-size: 1.25em;
    justify-content: center;
}

.navbar-brand {
    color: white !important;
}

.navbar-light .navbar-nav .nav-link {
    color: white !important;
}

.active {
    text-decoration: underline;
    text-decoration-color: white;
}

nav a {
    padding: 5px 7px;
}

main {
    max-width: 60%;
    margin: 0 auto;
    margin-top: 3%;
    font-size: 1.3em;
}

#welcome {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}

#welcome img {
    margin-top: 75px;
}

.row {
    margin: 0 !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 50%;
    gap: 25px;
}
  
.column {
    flex: 35%;
}

.img {
    max-width: 100%;
    border: 2px solid #920D1D;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

.carousel-item img {
    height: 100% !important;
    width: 100%;
    object-fit: contain;
}
  
.carousel-item {
    height: 500px;
    display: flex;
    justify-content: center; /* centers items horizontally */
    align-items: center; /* centers items vertically */
    overflow: hidden;
}

.underBreak {
    padding-bottom: 25px;
    margin-bottom: 20px;
    border-bottom: 5px solid #920D1D; 
}

.testimony {
    margin-top: 10px;
    font-size: 0.75em;
    border-bottom: 1px solid #920D1D;
}

.testimony:last-child {
    border-bottom: none;
}

@media (max-width: 775px) {
    #welcome {
        display: block;
    }

    #welcome img {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    #suites .row .column img {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .row {
        display: block !important;
    }

    .column, .row p {
        max-width: 444px;
        margin: 0 auto;
    }

    .car-img {
        height: 235px;
        max-height: 235px;
        border: 2px solid #920D1D;
    }
}

@media (max-width: 600px) {
    main {
        max-width: 95%;
    }

    #booking {
        width: 100%;
    }
}