@font-face {
  font-family: main;
  src: url(assets/fnt/main.woff2);
}

:root {
  --text: rgb(230, 230, 230);
  --dred: rgb(110, 0, 0);
  --hred: rgb(150, 0, 0);
}

body {
    margin: 0;
    padding: 0;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: main, Verdana, Tahoma, sans-serif;
    background-image: url('assets/gfx/main.gif');
    background-color: black;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-size: 18px;
}

.background img {
    opacity: 0;
}

header {
    width: 95%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}

.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
    color: var(--text);
}

p {
    margin-top: 5px;
    letter-spacing: 2.5px;
}

hr.solid {
    border-style: none;
    border-top: 3px solid var(--dred);
    margin-bottom: 10px;
    width: 500px;
    border-radius: 5px;
}

.tile {
    width: 60%;
    height: 35px;
    background-color: var(--dred);
    margin: 10px;
    text-align: center;
    border: 2px solid black;
    box-shadow: 0 0 0 5px var(--dred), inset 0 0 0 1px black;
    transition: all ease-in-out 0.1s

}

.tile:hover {
    background-color: var(--hred);
    box-shadow: 0 0 0 5px var(--hred), inset 0 0 0 1px #000;
}

.image-container {
    opacity: 1;
    margin-top: 50px;
    height: 200px;
    width: 200px;
    border-radius: 100px;
    overflow: hidden;
    transition: all ease-in-out 0.2s;
    margin-bottom: 20px;
}

.image-container img {
    height: 100%;
}

.click-popup {
    position: absolute;
    left: 40%;
    top: 23%;
    transform: translateX(-50%) translateY(0);
    color: var(--text);
    padding: 5px 12px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    font-size: 16px;
    white-space: nowrap;
}

.bonus-popup {
    position: absolute;
    left: 37%;
    top: 18%;
    transform: translateX(-50%) translateY(0);
    color: var(--text);
    padding: 5px 12px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    font-size: 16px;
    white-space: nowrap;
}

@media (max-width: 600px) {

    .image-container {
        margin-top: 120px;
    }

    .click-popup {
        left: 50%;
        top: 10%;
    }

    .bonus-popup {
        left: 40%;
        top: 6%;
    }
    
}

@keyframes animjump {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  30% {
    transform: translateY(0) scale(1.09);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes animijump {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  30% {
    transform: translateY(0) scale(1.07);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}