/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fff; /* Fallback color */
}

p {
  margin-bottom: 10px;
}

/* Horizontal stripes for wider viewports */
@media (min-aspect-ratio: 1/1) {
    body {
        background: linear-gradient(to bottom, #FCF434 25%, #FFFFFF 25%, #FFFFFF 50%, #9C59D1 50%, #9C59D1 75%, #2C2C2C 75%);
    }
    .back-link a {
        color: #9C59D1;
    }
}
@media (aspect-ratio: 1/1) {
    body {
        background: linear-gradient(to bottom, #FCF434 25%, #FFFFFF 25%, #FFFFFF 50%, #9C59D1 50%, #9C59D1 75%, #2C2C2C 75%);
    }
    .back-link a {
        color: #9C59D1;
    }
}

/* Vertical stripes for taller viewports */
@media (max-aspect-ratio: 1/1) {
    body {
        background: linear-gradient(to right, #2C2C2C 25%, #9C59D1 25%, #9C59D1 50%, #FFFFFF 50%, #FFFFFF 75%, #FCF434 75%);
    }
    .back-link a {
        color: #FFFFFF;
    }
}

.container {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: left;
    margin-top: 60px; /* Ensure there's space at the top to see the flag and the back arrow if present*/
}

ul {
    margin-left: 20px;
    padding-left: 0;
    list-style-position: inside;
}

ol {
    margin-left: 20px;
    padding-left: 0;
    list-style-position: inside;
}

.container h3, .container h4 {
    margin-top: 20px;
}

.back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
}

.back-link a {
    text-decoration: none;
}

footer {
    margin-top: 20px;
    text-align: center;
}

.footer-container {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

footer a {
    font-size: 0.8em;
    color: #666;
    text-decoration: none;
}

