html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}







html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: sans-serif;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* story */
#story-box {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

#next-arrow {
    cursor: pointer;
    font-weight: bold;
    font-size: 28px;
    transition: transform 0.2s;
    z-index: 10;
}

    #next-arrow:hover {
        transform: scale(1.3);
        z-index: 10;
    }

/* Fade animation */
.fade-in {
    animation: fadeIn 0.3s forwards;
}

.fade-out {
    animation: fadeOut 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}






.click-anywhere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    text-decoration: none;
}

#woods2_1 {
    top: 60%;
    left: 70%;
    height: 35vh;
    width: 28vw;
    color: white;
}

#woods3 {
    top: 50%;
    left: 50%;
    height: 40vh;
    width: 15vw;
    color: white;
}

#village2 {
    top: 25%;
    left: 38%;
    height: 50vh;
    width: 20vw;
    color: white;
}

#village_run {
    top: 5%;
    left: 1%;
    height: 90vh;
    width: 20vw;
    color: white;
}

#village3 {
    top: 30%;
    left: 10%;
    height: 60vh;
    width: 80vw;
}

#village4_1 {
    top: 22%;
    left: 40%;
    height: 30vh;
    width: 20vw;
    color: white;
}
#village4_2 {
    top: 30%;
    left: 85%;
    height: 50vh;
    width: 10vw;
    color: white;
}

#village4_1_1 {
    top: 30%;
    left: 85%;
    height: 50vh;
    width: 10vw;
    color: white;
}

#village4_1_3 {
    top: 30%;
    left: 85%;
    height: 50vh;
    width: 10vw;
    color: white;
}

#snatta_mat {
    top: 60%;
    left: 35%;
    height: 30vh;
    width: 48vw;
    color: white;
}

#respawn{
    top: 30%;
    left: 30%;
    height: 40vh;
    width: 40vw;
}

.go-next {
    position: fixed;
    border: 1.5px solid white;
    z-index: 10;
}




.choice-btn {
    position: fixed;
    bottom: 15%;
    border: 2px solid white;
    z-index: 10;
    color: white;
}


/* Placering */
#choice-death {
    left: 45%;
    top: 52%;
    height: 18vh;
    width: 7vw;
}

#choice-continue {
    left: 60%;
    top: 40%;
    height: 40vh;
    width: 20vw;
}

