@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 0;
    padding: 0;
    background-color: #000; /* Fallback color */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; /* Prevent scrollbars */
}

/* Space Background Animation */
@keyframes moveBackground {
    from { background-position: 0 0; }
    to { background-position: 10000px 5000px; }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: url(https://steamuserimages-a.akamaihd.net/ugc/271724616138984267/FD78FE7C4AC9EC2941BACBB457D311B908EA9CCD/?imw=5000&imh=5000&ima=fit&impolicy=Letterbox&imcolor=%23000000&letterbox=false) repeat; /* Replace with your image path */
    z-index: -1;
    animation: moveBackground 100s linear infinite;
}

/* Header Styles */
h1 {
    margin-top: 20px;
    text-transform: uppercase; /* Make the text uppercase */
    font-size: 40px; /* Adjust font size as needed */
}

/* Menu Styles */
#menu-toggle {
    position: fixed;
    top: 50px; /* Adjusted the top value from 10px to 20px */
    left: 10px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    /* New styles to make the button 50px by 50px */
    width: 50px;
    height: 50px;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: hidden;
    z-index: 999;
}

.side-menu.open {
    transform: translateX(250px);
    visibility: visible;
}

.menu-item {
    display: block;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    margin: 10px 0;
    cursor: pointer;
    font-size: 18px;
    text-align: left;
    transition: background-color 0.3s;
}

.menu-item:hover {
    background-color: #555;
}

.top-bar {
    background-color: #333; /* Or any color you prefer */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar a {
    display: inline-block;
    margin: 0 10px;
}

.top-bar img {
    height: 25px; /* Adjust size as needed */
}

/* Adjust the margin to bring the button right below the bar */
h1 {
    margin-top: 10px; /* Adjust the value as needed */
}
/* ... your existing styles ... */

.update-log {
    text-align: center;
    margin-top: 20px; 
    padding: 15px;
    /*background-color: #222;*/ /* Remove background color */
    border-radius: 5px;
    width: 80%; /* Adjust the width as needed */
}

h3 {
    font-size: 24px; /* Make the text bigger */
}

/* ... your existing styles ... */