body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    background-image: url('dispelledBackground.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    overflow-x: hidden;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(255, 0, 0, 0.5);
    letter-spacing: 2px;
    /* all browser no selection */
    user-select:  none;
    -webkit-user-drag: none;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
}

.hat-link {
    position: absolute;
    top: 2dvh;
    left: 3dvw;
}

.hat {
    width: 10dvw;
    max-width: 80px;
    cursor: pointer;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100dvw;
}

.title {
    font-size: 3rem;
    display: flex;
    text-align: center;
    margin-top: 5dvh;
    margin-bottom: 3dvh;
}

.video-container {
    align-items: center;
}

.text-container {
    text-align: center;
    width: 80dvw;
    margin-bottom: 10px;
}

h2 {
    font-size: 2em;
}

p {
    font-size: 1em;
    line-height: 1.2;
}

.enemies {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.enemies-track {
    display: flex;
    gap: 3dvw;
    height: 16dvh;
    width: 100%;
    transition: transform 0.3s ease;
}

.enemies-image {
    opacity: 0.5;
    height: 16dvh;
    transition: opacity 0.3s ease;
    transition: width 0.3s ease;
}

/* #enemy5 { padding-bottom: 2dvh; } */
/* #enemy6 { padding-bottom: 2dvh;} */
/* #enemy7 { padding-bottom: 2dvh;} */

.enemies-centered {
    opacity: 1;
    transition: opacity 0.3s ease;
    transition: width 0.3s ease;
}

.enemies-text {
    width: 84dvw;
    height: 36dvh;
    text-align: center;
}

.loot {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    /* margin-top: 2dvh; */
}

.loot-track {
    display: flex;
    gap: 8dvw;
    height: 12dvh;
    width: 100%;
    transition: transform 0.3s ease;
}

.loot-image {
    opacity: 0.5;
    height: 8dvh;
    transition: opacity 0.3s ease;
    transition: width 0.3s ease;
}

.loot-centered {
    opacity: 1;
    transition: opacity 0.3s ease;
    transition: width 0.3s ease;
}

.loot-text {
    width: 84dvw;
    height: 34dvh;
    text-align: center;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.play-link {
    display: flex;
    padding: 10px;
}

.play {
    display: flex;
    width: 160px;
    cursor: pointer;
}
