.overlay-text p {
    margin: 0 0 1em 0;
    font-size: 1.1em;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .image-text-container .image {
        max-width: 100vw;
        height: auto;
    }
    .overlay-text {
        min-width: 0;
        max-width: 80vw;
        padding: 1em 0.7em;
        font-size: 0.8em;
    }
    .overlay-text p {
        line-height: 1.3;
    }
    .nextmeetup {
        font-size: 0.8em;
    }
}
/* Overlay text block attached to right side of image */
.image-text-container {
    position: relative;
    display: inline-block;
}

.image-text-container .image {
    display: block;
    max-width: 600px;
    height: auto;
}

.overlay-text {
    position: absolute;
    top: 12em;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    min-width: 220px;
    max-width: 80%;
    padding: 1em 1.5em 0em 1em;
    box-sizing: border-box;
    text-align: left;
    display: block;
}

.overlay-text p {
    margin: 0 0 1em 0;
    font-size: 1em;
    line-height: 1.5;
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'Courier New', Courier, 'Lucida Console', 'Monaco', 'Consolas', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Image styling */
.image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 40px auto 40px auto;
}

/* Paragraph styling */
p {
    font-size: 16px;
    margin: 20px auto 10px auto;
    max-width: 600px;
    text-align: left;
}

p a {
    color: white;
    text-decoration: none;
}

p a:hover {
    color: #C3C8FF;
    text-decoration: underline;
}

.nextmeetup {
    text-align: center;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    p {
        font-size: 14px;
        margin-bottom: 40px;
    }
}

.crt::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 9999;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.crt::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 16, 16, 0.1);
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
}