/* Reset default margin and padding for all elements */
@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat'; 
}

/* Apply a background color and some basic styling to the entire page */
body {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
}

/* Style the container for the blog post content */
.content {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Style headings */
h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Style paragraphs and images */
p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Add a bit of space below the last paragraph */
.content p:last-child {
    margin-bottom: 20px;
}

/* Style the beach sections */
.beach-section {
    margin-bottom: 40px;
}

.beach-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    position: ce;
}

.beach-section .text {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

/* Style the back link */
.back-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    text-decoration: none;
    color: #0077cc;
    transition: color 0.3s;
}

/* Hover effect */
.back-link:hover {
    color: #005580;
}
