body {
    /* Replace with your cloud image link */
    background-image: url('your-cloud-background.jpg'); 
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

#main-container {
    border: 3px solid black;
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    padding: 40px;
    width: 80%;
    max-width: 800px;
}

.pink-text { color: #ff80ff; margin-bottom: 0; }

.red-pixel { 
    color: red; 
    font-size: 3rem; 
    margin-top: 0;
    /* Adding a pixelated shadow effect */
    text-shadow: 2px 2px black; 
}

.content-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.iframe-box {
    border: 1px solid black;
    width: 250px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

ul { list-style-type: ". "; }
