/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eaeaea;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-title {
    font-size: 2.5em;
    margin: 10px 0;
}

/* Container Styles */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Dynamic grid for better layout */
    gap: 20px; /* Spacing between boxes */
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Box Styles */
.box-container {
    text-align: center;
    text-decoration: none;
}

.box {
    background-color: #a42bff;
    color: white;
    padding: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.box:hover {
    background-color: #cf80ff;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #2c3e50;
    color: white;
}