*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* cursor: none; */

}
:root{
    --glow:#1872d8;
    --inner:#daf4ff;
}

body{
font-family: monospace;
background-color: #000000;
overflow: hidden;
color: #ffffff;
text-shadow:
0 0 5px var(--inner),   /* lille glød */
0 0 10px var(--inner),  /* større glød */
0 0 20px var(--inner),
0 0 40px var(--glow),
0 0 80px var(--glow);  /* kæmpe glød */;

}
.kontainer{
    padding: 40px;
}
.bg-ani{
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%) rotate(90deg);
    width: 145%;
    height: 100vw;
    /* z-index: 1; */
}

/* #light1{
    position: absolute;
    left: 16.25vw;
    top: 5.75vh;
    width: 663px;
    height: 1165px;
    clip-path: path("M 10,50 L 90,50 200,80 Z");

    box-shadow: inset 0 0 40px #e38181, inset 0 0 80px var(--glow);
  border-radius: 10px;
  z-index: 2;
} */

/* #light2{
    position: absolute;
    left: 16.25vw;
    top: 5vh;
    right: 16.25vw;
    bottom: 10vh;
     width: auto;
    height: auto;
    border: solid white 2px;

    box-shadow: inset 0 0 40px #fff, inset 0 0 80px var(--glow);
  border-radius: 10px;
  z-index: 2;
} */



#countdown{
    position: relative;
    top: 1vh;
    left: 2.5vw;
    display: flex;
    justify-content: center;
    font-size: 7rem;
    margin-bottom: 1%;

}

.refresh{
    width: 180px;
    height: 150px;
    right: 0;
    top: 50px;
    position: absolute;
    z-index: 2;
    background-color: transparent;
    border: none;
}

#to-index{
    position: absolute;
    left: 130px;
    top: 0;
    width: 145px;
    height: 140px;
    padding: 10px;
    background-color: transparent;
    /* border: solid #fff; */
    z-index: 1;
}

#to-game{
    position: absolute;
    right: 18vw;
    bottom: 12vh;
    width: 180px;
    height: 100px;
    padding: 10px;
    border: none;
    background-color: #0a1114;
    color: #fff;
    text-shadow:
0 0 5px var(--inner),   /* lille glød */
0 0 10px var(--inner),  /* større glød */
0 0 20px var(--glow),
0 0 40px var(--glow),
0 0 80px var(--glow);  /* kæmpe glød */;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;

    box-shadow: 0 0 5px var(--inner),   /* lille glød */
0 0 10px var(--inner),  /* større glød */
0 0 20px var(--glow);
}

.letter{
    line-height: 2;
    padding: 0vw 20vw 0vw 20vw;
    font-size: 1.2rem;

}

#intro{
    margin-bottom:3vh ;
    margin-top: 6vh;
    line-height:3;


}


#the-client{
    margin-top: 5vh;
}

a{
  color: white; /* Text color */
  text-decoration: none; /* Removes underline */
}

/* .kode-kasse{
    display: flex;
    justify-content: center;


} */

/* #talfelt{
    width: 50rem;
    height: 5rem;
    font-size: 5rem;
} */

.knapper{
    display: flex;
    justify-content: center;
}

button{
    font-size: 5rem;
    padding: 1.5rem;
    margin: 1.5rem;

}

#wordle-kasse{
    text-align: center;
    padding: 0vw 20vw 0vw 20vw;
}

#board{
    display: grid;
    grid-template-columns: repeat(4,100px);
    grid-gap: 15px 5px;
    justify-content: center;
    margin-bottom: 4%;
}

.tile{
    width: 100px;
    height: 100px;
    border: 3px solid #ffffff;
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #171f2c;
    color: #fff;
    box-shadow: 0 0 5px #9cd2ff,   /* lille glød */
0 0 10px #9cd2ff,  /* større glød */
0 0 20px #9cd2ff
/* 0 0 40px #9cd2ff; */;


}

.tile.correct{
    background-color: #538d4e;
}

.tile.present{
    background-color: #b59f3b;
}

.tile.absent{
    background-color: #3a3a3c;
}

#keyboard{
    position: relative;
    left: 2.5vw;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 5px;
}

.key{
    padding: 10px;
    border: none;
    background-color: #0a1114;
    color: #fff;
    text-shadow:
0 0 5px var(--inner),   /* lille glød */
0 0 10px var(--inner),  /* større glød */
0 0 20px var(--glow),
0 0 40px var(--glow),
0 0 80px var(--glow);  /* kæmpe glød */;
    font-size: 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;

    box-shadow: 0 0 5px var(--inner),   /* lille glød */
0 0 10px var(--inner),  /* større glød */
0 0 20px var(--glow);
}

.key.large{
    grid-column: span 3;
}

.key.disabled{
    background-color: #3a3a3c;
    pointer-events: none;
}

#message{

    margin-top: 2%;
    margin-bottom: 2%;
    font-size: 1.5rem;
}