body {
    background: linear-gradient(270deg, rgba(86, 11, 36, 0.95), 30%, rgba(41, 14, 78, 0.95)), url(../images/lemap.png);
    background-size: cover;
    color: #dddddddd;
    margin: 0;
    padding: 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a {
    display: inline-block;
    text-decoration: none;
    color: #eee;
    transition: all 0.2s;
}

a:hover {
    background: #542e0011;
    color: goldenrod;
}

nav {
    height: 10vh;
    background-color: #ffffff11;
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;
}

form {
    margin-bottom: 1rem !important;
    background: #ffffff11;
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.inputdownload {
    text-decoration: none;
    margin: 1rem;
    padding: 0.5rem 0.2rem;
    border-radius: 5px;
    background: #ffffff11;
    transition: linear all 0.2s;
}

.inputdownload:hover {
    border: 1px solid goldenrod;
    background: #00000033;
}

input[type=text] {
    height: 32px;
}

input[type=submit] {
    background: indianred;
    border: 1px solid goldenrod;
    height: 2rem;
    width: 8rem;
    margin: 0 auto;
    border-radius: 5px;
    color: #eee !important;
    cursor: pointer;
    transition: linear all 0.2s;
}

input[type=submit]:hover {
    background: indigo;
}

p {
    margin: 0.5rem !important;
}

input {
    color: black !important;
}

code {
    letter-spacing: 2px;
    background: #1f1f1f;
    border: 1px dashed gold;
    border-radius: 0.5rem;
    padding: 0.4rem;
    margin: 1rem;
}

.container {
    padding: 0.5rem;
    margin: 1rem;
    background: #ffffff11;
    backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid goldenrod;
}

.resultdiv {
    margin: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background-color: #0003;
}

.link_btn {
    text-decoration: none;
    margin: 1rem;
    padding: 0.5rem 0.2rem;
    border-radius: 5px;
    background: #ffffff11;
    backdrop-filter: blur(4px);
    transition: linear all 0.2s;
}

.link_btn:hover {
    border: 1px solid goldenrod;
    background: #00000033;
}

.correct {
    border: 4px solid rgb(64, 194, 129);
}
.incorrect {
    border: 4px solid #be0a32;
}

.static{
    position: static;
  }
  
  .mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  
  .my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }
  
  .flex{
    display: flex;
  }
  
  .hidden{
    display: none;
  }
  
  .w-\[50\%\]{
    width: 80%;
  }
  
  .flex-row{
    flex-direction: row;
  }
  
  .flex-col{
    flex-direction: column;
  }
  
  .items-center{
    align-items: center;
  }
  
  .justify-evenly{
    justify-content: space-evenly;
  }
  
  .rounded-md{
    border-radius: 0.375rem;
  }
  
  .border-2{
    border-width: 2px;
  }
  
  .text-center{
    text-align: center;
  }

  /* @media only all and (max-width: 600px) {
    body {
      font-size: 120px;   
    }
    p {
      font-size: 120px;
    }
  } */
#timer {
    border: none;
    padding: 10px; /* Adds space around the text */
    width: fit-content; /* Fits the box to the content */
    background-color: #ca2626; /* Light background color */
    font-size: 16px; /* Adjusts the font size */
    font-weight: 700;
    border-radius: 8px; /* Makes the corners rounded */
    margin: 10px; /* Adds space around the box */
    display: inline-block; /* Ensures the box is inline */
  }
  