* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #9ff7e5;
    padding: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

.hero-box {
    background-color: #f5e7d3;
    margin: 20px;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

.hero-title {
    font-family: "Georgia", cursive;
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: "Georgia", cursive;
    font-size: 20px;
    margin-bottom: 20px;
}

.button {
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    flex: 1;
}

.gallery img {
    width: 375px;
    height: 240px;
    object-fit: cover;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
}

footer {
    background-color: #1f6b22;
    color: white;
    margin-top: auto;
    text-align: center;
    padding: 20px 0;
}

.footer-nav {
    margin-bottom: 10px;
}

.footer-nav a {
    color: white;
    margin: 0 10px;
    font-weight: bold;
    text-decoration: none;
}

footer p {
    font-size: 14px;
}