html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    height: calc(100vh - 60px);
}

.download-links {
    margin: center;
    display: flex;
    text-align: center;
    height: 100%;
}

.game-desc {
    width: 50%;
    margin: 20px 0;
    text-align: center;

}

.game-name {
    color: red;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}

.game-description {
    color: #FA0000;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word; /* Break long words */
    white-space: normal; /* Allow text to wrap to the next line */
}

.game-frame {
    flex: 2;
    height: 100%;
    width: 100%;
    border: none;
    /* Remove border if you don't want a border */
}

.download-links {
    flex-direction: column;
}

.download-links a {
    margin: 10px 0;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    width: 100%;
    max-width: 200px;
}

.download-links a:hover {
    background-color: #0056b3;
}

/* Hide iframe on mobile */
@media only screen and (max-width: 768px) {
    .game-frame {
        display: none;
    }

    .content-container {
        flex-direction: column;
        height: auto;
    }

    .download-links {
        margin-top: 20px;
    }
}