@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Itim';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/itim-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    font-display: block;
  }

body {
    background-image: url(./images/baallot.bg.png);
    font-family: Itim, "Comic Sans MS", sans-serif;
}

div.question {
    position: absolute;
    top: calc(30% - 2rem);
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 60%;
    text-align: center;
    font-size: 2rem;
    cursor: pointer;
}

div.logo {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background-image: url(./images/baallot.logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 200px;
    height: 200px;
    cursor: pointer;
}

.all-links {
    display: none;
}

@media only screen and (max-width: 600px) {
    div.logo {
        bottom: 20%;
    }
  }