body {
    font-family: Arial, Helvetica, sans-serif;
}
html {
    font-size: 125%;}
body {
    font-family: Arial, Helvetica, sans-serif;
}
.header {
    text-align: center;
    color: white; /* white text color */
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: auto;
}

/* Increase the font size of the <h1> element */
.header h1 {
    font-size: 40px;
}
.navbar {
    overflow: hidden; /* Hide overflow */
    background-color: #333; /* Dark background color */
}

/* Style the navigation bar links */
.navbar a {
    float: left; /* Make sure that the links stay side-by-side */
    display: block; /* Change the display to block, for responsive reasons (see below) */
    color: white; /* White text color */
    text-align: center; /* Center the text */
    padding: 14px 20px; /* Add some padding */
    text-decoration: none; /* Remove underline */
}
/* Right-aligned link */
.navbar a.right {
    float: right; /* Float a link to the right */
}

/* Change color on hover/mouse-over */
.navbar a:hover {
    background-color: #ddd; /* Grey background color */
    color: black; /* Black text color */
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}
/* Ensure proper sizing */
* {
    box-sizing: border-box;
}

/* Column container */
.row {
    display: flex;
    /*flex-wrap: wrap;*/
}
.booking a {
    color: black;
}
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
    flex: 34%; /* Set the width of the sidebar */
    background-color: #f1f1f1; /* Grey background color */
    padding: 20px; /* Some padding */
}

/* Main column */
.main {
    flex: 33%; /* Set the width of the main content */
    background-color: white; /* White background color */
    padding: 20px; /* Some padding */
}
.costs {
    flex: 33%;
    padding: 20px;
    background-color: #f1f1f1;
}
.footer {
    padding: 15px; /* Some padding */
    text-align: center; /* Center text*/
    background: #ddd; /* Grey background */
}

.footer {
    font-size: 10px;
}
.logo {
    flex: 0%;
    display: flex;
    justify-content: left;
    align-items: Left;
    position: absolute;
    padding-top: 5px;
    padding-left: 5px;
}
.logo img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}
/* Main column */
.title {
    flex: 30%; /* Set the width of the main content */
    padding: 15px; /* Some padding */
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}
#stella {
    width: 175px;
    height: auto;  /* war: 250px */
    flex-shrink: 0;
    border-style: solid;
    border-width: 2px;
    border-color: black;
}
.info {
    flex: 1; /* Set the width of the main content */
    padding: 15px; /* Some padding */
    justify-content: center;
    align-items: center;
    padding-right: 30px;
}
#max {
    width: 175px;
    height: auto;  /* war: 250px */
    flex-shrink: 0;
    border-style: solid;
    border-width: 2px;
    border-color: black;
}
.stella {
    display: flex;
    align-items: flex-start;
    padding-bottom: 20px;
}
.max {
    display: flex;
    align-items: flex-start;
    padding-bottom: 20px;
}
.tours img {
    max-width: 100%;
    height: auto;
}
.about img {
    max-width: 100%;
    height: auto;
}
video {
    width: 100%;
    height: auto;
    display: block;
}
.bahamas {
    max-width: 43%;
    height: auto;
}
img {
    max-width: 100%;
    height: auto;
}
.translate {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: black;
    background-color: #ddd;
    border-radius: 8px;
}
a {
    color: black;
}
* {
    margin: 0;
}
