body {
    background-color: black;
    color: #ffd700;
    font-family: "Courier New", monospace;
    background-image: url("assets/doom_bg.png");
    background-size: cover;
    text-align: center;
    padding: 2em;
}
/* Apply when the screen is widescreen (width >= height) */
@media screen and (min-aspect-ratio: 1/1) {
    body {
        background-image: url("assets/doom_bg_wide.png");
    }
}

h1 {
    color: red;
    font-size: 3em;
    text-shadow: 2px 2px 0 #000;
}
.doom-face {
    max-width: 300px;
    border: 3px solid red;
    margin: 1em auto;
    display: block;
}
.hellgate-btn {
    display: inline-block;
    margin-top: 1em;
    padding: 1em 2em;
    background-color: green;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid lime;
    box-shadow: 2px 2px #000;
}
.marquee {
    color: yellow;
    font-size: 1.5em;
    margin-bottom: 2em;
}
.event-info {
    font-size: 1.2em;
}
.rsvp {
    display: block;
    margin-top: 2em;
    font-size: 1.5em;
    color: yellow;
    text-decoration: none;
}
.rsvp-green {
    color: lime;
}
.flames {
    display: flex;
    justify-content: center;
    margin-top: 2em;
}
.flame {
    width: 64px;
    height: 64px;
    margin: 0 10px;
}

.social-icons {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.social-icons img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.2s;
}

.social-icons img:hover {
    transform: scale(1.2);
}
