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

body {
    font-family: "Roboto Mono", monospace;
    font-style: normal;
    background-color: #000000;
    color: #ffffff;
}

a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}

a:hover {
    text-decoration: none;
}

.title {
    max-width: 20%;
    position: fixed;
    top: 1em;
    left: 1em;
    padding: 1em;
}

.title img {
    width: 100%;
}

.title a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: normal;
}

.title a:hover {
    color: #ffffff;
    text-decoration: none;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    padding: 1em;
}

.content {
    width: 50%;
    padding-bottom: 2em;
}

.content img {
    width: 100%;
}

.video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hel {
    position: fixed;
    bottom: 1em;
    right: 1em;
    max-width: 4%;
}

.hel img {
    width: 100%;
}

.hel-mobile {
    visibility: hidden;
}

/* Desktop styles (default) */
/* These styles apply to all screen sizes, including desktop by default */

/* Tablet styles */
@media (max-width: 1023px) {
    
}

/* Mobile styles */
@media (max-width: 767px) {
    .title {
        max-width: 95%;
        position: relative;
        padding: 1em;
    }
    .content {
        width: 95%;
        padding-bottom: 2em;
    }
    .hel {
        visibility: hidden;
    }
    .hel-mobile {
        visibility: visible;
        text-align: center;
        padding-bottom: 3em;
    }
    .hel-mobile img {
        max-width: 50%;
    }
}
