* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #fff;
}

.hero {
    background-image: url('images/frog0.jpg'); /* Replace with your top image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7); /* Add full shadow to the hero image */
}

.hero h1 {
    font-size: 7em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0; /* Remove default margin */
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 7em; /* Adjust font size for smaller screens */
        text-align: center; /* Center the text */
        width: 100%; /* Make the h1 take full width */
        display: block; /* Ensure it behaves like a block element */
        margin: 10px 0; /* Add some margin for spacing */
    }
}

.content {
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.footer-image {
    width: 100%; /* Ensure the container takes full width */
    overflow: hidden; /* Prevent overflow */
}

.footer-image img {
    width: 100%; /* Make the image full width */
    height: auto; /* Maintain aspect ratio */
}
.menu {
    background-color: rgba(16, 77, 3, 0.7); /* Semi-transparent background for the menu */
    padding: 10px 0;
    text-align: center;
    position: absolute; /* Keep absolute positioning */
    top: 80vh; /* Adjust this value to move the menu up or down */
    left: 0;
    right: 0;
    width: 50%; /* Set width to 50% */
    margin: 0 auto; /* Center the menu */
    z-index: 10; /* Ensure the menu is above other content */
    max-width: 800px; /* Optional: Set a max-width for larger screens */
    border-radius: 15px;
}

.menu ul {
    list-style-type: none;
    padding: 0; /* Remove default padding */
}

.menu li {
    display: inline; /* Default to inline for larger screens */
    margin: 0 15px; /* Space between links */
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

.menu a:hover {
    color: #f39c12; /* Change color on hover */
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .menu li {
        display: block; /* Stack links vertically */
        margin: 10px 0; /* Space between links */
    }
}
.bottom-line {
    background-color: rgba(16, 77, 3, 0.7); /* Semi-transparent background for the menu */
    padding: 10px 0;
    text-align: center;
}
.midsection {
    background-color: #051402; /* Solid black background */
    height: 100vh; /* Set height to fill the viewport */
    position: relative; /* Set position to relative for absolute positioning of children */
    padding: 20px; /* Add some padding */
    display: flex; /* Use flexbox to arrange content */
    flex-direction: column; /* Stack children vertically */
    justify-content: space-between; /* Space out children */
}

.midsection-text {
    text-align: center; /* Center the text */
    margin-bottom: auto; /* Push the text section to the top */
    padding: 20px; /* Optional: Add some padding for spacing */
}

/* Default font size for larger screens */
.midsection-text h3 {
    font-size: 2.5em; /* Font size for the heading on large screens */
}

.midsection-text p {
    font-size: 1.2em; /* Font size for the paragraph on large screens */
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .midsection-text h3 {
        font-size: 1.8em; /* Smaller font size for the heading on small screens */
    }

    .midsection-text p {
        font-size: 1em; /* Smaller font size for the paragraph on small screens */
    }
    .midsection-text a {
        color: #fff;
        text-decoration: none;
        font-size: 1em; /* Smaller font size for the paragraph on small screens */
    }
}
.midsection-text a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em; /* Font size for the paragraph on large screens */
}


.gif-container {
    display: flex; /* Use flexbox to arrange boxes */
    justify-content: space-around; /* Space boxes evenly */
    flex-wrap: wrap; /* Allow wrapping to the next line */
    margin-top: 20px; /* Space above the GIF boxes */
    position: absolute; /* Position the container absolutely */
    bottom: 20px; /* Position it 20px from the bottom */
    left: 0; /* Align to the left */
    right: 0; /* Align to the right */
}

.gif-box {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background for the boxes */
    border-radius: 8px; /* Rounded corners */
    padding: 10px; /* Padding inside the boxes */
    margin: 10px; /* Margin around the boxes */
    flex: 1; /* Allow boxes to grow equally */
    max-width: 20%; /* Set a max width for each box */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Add shadow for depth */
}

.gif-box img {
    width: 100%; /* Make the image full width */
    height: 100%; /* Maintain aspect ratio */
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .gif-box {
        max-width: 100%; /* Make boxes full width on small screens */
    }
}