@font-face {
    font-family: 'Halo Dek'; /* Name for the font */
    src: url('halo-dek.otf') format('opentype'); /* Path and format */
    font-weight: normal; /* Optional: Specify the weight */
    font-style: normal;  /* Optional: Specify the style */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    background-color: #1d2c7b;
    border: 1px solid;
    border-radius: 50px;
    color: white;
    font-family: "Gluten", cursive;
    margin-bottom: 1rem;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    width: 300px;
}

body {
    background-color: #faf3ec;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
    font-family: Arial, sans-serif;
}

h1 {
    color: #1d2c7b;
}

.subtitle {
    color: #1d2c7b;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: none; /* Prevent scrolling while interacting */
}

#santa {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    background: url("fotos/tamara.png");
    background-size: 100%;
    border-radius: 10%;
}

#score {
    padding: .5rem 1rem;
    background: #fcf401;
    border-radius: 50px;
    border: 5px solid black;
    font-family: "Gluten", cursive;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 16px;
}

#best-score {
    border: 5px solid black;
    font-family: "Gluten", cursive;
    border-radius: 50px;
    padding: .5rem 1rem;
    background: #fcf401;
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    font-size: 16px;
}

#game-over {
    font-family: Halo Dek, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: #fcf401;
    text-align: center;
    z-index: 2353523;
    -webkit-text-stroke: 1px black;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255, 255, 255, .33);
    width: 100%;
}
