@font-face {
  font-family: 'Quicksand';
  src: url('quicksand.ttf') format('truetype');
  font-weight: semi-bold;
  font-style: normal;
}

#DK {
  display: none;
}

html {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  display: flex;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
}

main {
  flex: 1;
}

h1 {
  display: none;
}

.alphabet, .additional {
display: flex;
flex-wrap: wrap;
gap: 0 60px;
margin: 40px 0;
justify-content: space-evenly;
}

.alphabet a {
display: flex;
text-decoration: none;
justify-content: center;
align-items: center;
}

.DK {
  position: relative;
  height: 80px;
  width: 80px;
  overflow: hidden;
}

.DK img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: opacity 0.3s ease;
}

.DK .hover {
  opacity: 0;
}

.DK:hover .hover {
  opacity: 1;
}

.DK:hover .default {
  opacity: 0;
}

.additional {
  display: none
}

a, a:visited {
  color: #a8000a;
  text-decoration: none;
}

a:active, a:hover, a:focus {
  color: #e02227;
}

.letter {
  font-family: "Quicksand", sans-serif;
  font-size: 80px;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease;
}

.letter:hover {
  color:  rgb(49, 109, 211, 0.5) !important;
  cursor: pointer;
}


/* Banner for Deutsch*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1200px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.banner p {
  font-size: 16px;
}

.bold {
  font-weight: 600;
}

.center {
  text-align: center;
}

p {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  text-align: left;
  margin: 10px 0;
}

.cross {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

footer {
  background-color: #f2f3f5;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer a {
  font-size: 16px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 50px;
  margin: 30px 30px;
}

.footer-logo {
  width: 150px;
}

@media screen and (min-width: 600px) {
  .alphabet, .additional {
    gap: 0 80px;
    margin: 60px 40px;
    justify-content: left;
  }

  .letter {
  font-size: 110px;
}

  .footer-links {
    margin: 50px 20px;
  }

  #DK {
  display: none;
}

.banner p {
  font-size: 20px;
}

}