* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-image: url('mainbackground.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #cccccc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.title-container {
    text-align: center;
}

h1 {
    font-size: 8rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.content {
    background-color: rgba(65, 69, 82, 0.9);
    border: 2px solid black;
    border-radius: 10px;
    padding: 20px;
    margin: 2%;
    margin-left: 10%;
    margin-right: 10%;
    color: rgb(255, 255, 255);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 1.5rem;
}

h2 {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-family: Arial, sans-serif;
    font-weight: bold;
}
