body {
    background-color: black; /* Set the background color to black */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    color: white;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 350px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.coming-soon {
    width: 175px;
    margin: 20px 0;
    animation: fadeInUp 1s ease-in-out;
}

.wishlist {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

.social-links img {
    width: 40px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.2);
}

.footer {
    font-size: 0.8em;
    margin-top: 15px;
    text-align: center;
}

.link {
    color: #FFD700;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.forum-button {
    background-color: #FFD700;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 20px 0;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.forum-button:hover {
    background-color: #FFA500;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.item {
    text-align: center;
    margin-bottom: 20px;
}

.item h2 {
    font-weight: bold;
}
