/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2e004f; /* dark purpleish */
    color: white;
}

/* Navigation Bar */
nav {
    width: 100%;
    background-color: #1a0033;
    padding: 10px 0;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
}

nav button {
    background-color: #ffcc00;
    color: black;
    border: 2px solid black;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s;
}

nav button:hover {
    background-color: #e6b800;
}

/* Main Content */
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px; /* space for nav */
}

/* Giant Box Title */
.title-box {
    background-color: #ffcc00;
    color: black;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    padding: 50px 100px;
    border: 5px solid black;
    margin-bottom: 50px;
}

/* Changing Image */
.changing-image {
    width: 80%;
    max-width: 800px;
    border: 3px solid white;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Sidebar with Log */
.log-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.log-image {
    width: 300px;
    border: 3px solid white;
    border-radius: 10px;
}

.log-text {
    max-width: 400px;
}

/* Buttons below main section */
.main-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}
