body {
    background-image: url("background3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Styling for the side menu */

.side-menu {

    position: fixed;

    top: 0;

    left: 0;

    width: 250px;

    height: 100%;

    background-color: #111;

    padding-top: 60px;

    z-index: 10;

    /* This moves the menu completely off-screen to the left */

    transform: translateX(-100%);

    /* Smooth slide effect */

    transition: transform 0.3s ease-in-out;

}

/* This class will be added by JavaScript to slide the menu into view */

.side-menu.active {

    transform: translateX(0);

}

/* Styling for links inside the menu */

.side-menu nav a {

    display: block;

    padding: 15px 25px;

    color: #ededed;

    text-decoration: none;

    font-size: 22px;

    transition: 0.2s;

}

.side-menu nav a:hover {

    color: #a9a0a0;

}

/* Close button inside the menu */

.close-btn {

    position: absolute;

    top: 15px;

    right: 25px;

    font-size: 36px;

    background: none;

    border: none;

    color: #818181;

    cursor: pointer;

}

/* Dimmed background overlay */

.menu-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.5);

    z-index: 5;

    display: none;
    /* Hidden by default */

}

.menu-overlay.active {

    display: block;

}

/* Toggle button styling */

.toggle-btn {

    font-size: 20px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 10px 15px;

    cursor: pointer;

}

.shoutout{
    margin-left: 300px;font-size:25px;
}

/* The container holding both images */
.image-container {
    display: flex;       /* Activates Flexbox layout */
    gap: 15px;           /* Adds a gap/space between the images */
    justify-content: center; /* Centers the images horizontally (optional) */
}

/* Styling for the images to keep them responsive */
.image-container img {
    max-width: 100%;     /* Prevents images from overflowing */
    height: auto;        /* Maintains aspect ratio */
    width: 25%;          /* Adjusts width so they fit side-by-side */
    object-fit: cover;   /* Ensures images crop nicely if needed */
}