body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    margin: 0; /* Add more margin top */
    font-size: 24px; /* Increase font size */
}

a {
    text-decoration: none;
    color: #181817;
}

a:hover {
    text-decoration: none;
    color: darkslategrey;
}

nav a {
    padding: 10px 20px;
    max-width: 20px;
    text-decoration: none;
    color: #000;
    border-radius: 10px; /* Add border radius */
}

nav a:hover {
    color: whitesmoke;
    background-color: black;
}

.nav-bored:hover {
    border: 2px solid black;
    color: gold;
    background-color: black;
}

main {
    padding: 10px 20px;
    align-items: center;
    display: flex; /* Enable flexbox layout */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    /*min-height: 100vh; /* Optional: Set minimum viewport height */
}

.game-container {
    border: 3px solid black;
    border-radius: 20px; /* Add border radius */
    width: 800px;
    /*padding: 20px;*/
    padding: 20px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 10px;
}

h3 {
    font-size:14px;
    color: darkslategray;
}

iframe {
    width: 100%;
    height: 100%; /* Adjust height as needed */
    overflow: hidden; /* Hide scrollbars */
}

.iframe-wrapper {
    overflow: hidden; /* Hide scrollbars */
    height: 600px; /* Adjust height as needed */
    border: 2px solid black;
  }

p {
    margin-top: 10px;
}

.nav-bored {
    border: 2px solid black;
    background-color: gold;
}

footer {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: center;
}

.footer-button {
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buymeacoffee:hover {
    background-color: #FFDD00;
    color: black;
}

.contact:hover {
    background-color: lightskyblue;
    color: black;
}

.source:hover {
    background-color: lightcoral;
    color: black;
}

.padding-top-30 {
    padding-top: 50px;
}

/* Add media queries for mobile responsiveness here */
@media only screen and (max-width: 768px) {
    /* Adjust styles for smaller screens */
    .game-container {
        /*padding: 20px;*/
        padding: 20px;
        margin-bottom: 20px;
    }
    .navigation {
        display: none;
    }
    .logo {
        justify-content: center;
    }

}
