body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #6a1b9a, #8e24aa, #9c27b0);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
/* TODO - trying to get content to properly show on all screen sizes.
.content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto 30px;
    width: 90%;
    max-width: 1000px;
    padding: 0 15px;
    box-sizing: border-box;
}
*/
h1 {
    margin-top: 20px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.navbar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a {
    text-decoration: none;
    color: white;
    margin: 0 20px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ffcc00;
}

.navbar a.active {
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
}
.title-container {
    text-align: center; 
    width: 100%;
    padding: 0 15px;
    margin: 20px 0; 
}

h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    width: 90%; 
}


@media (max-width: 500px) {
h1 {
    font-size: 2rem;
}

.navbar a {
    font-size: 1rem;
}
}