a, a:visited {
  color: #a8000a;
  text-decoration: none;
}

a:active, a:hover, a:focus {
  color: #e02227;
}

html {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  display: flex;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  min-width: 320px;
}

.header-logo {
  width: 150px;
  margin: 10px 20px;
}

h1 {
  margin: 50px 0;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  color: #EB5C3D;
}

main {
  flex: 1;
}



#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000066;
  z-index: 999;
}


#cookie-banner {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1200px;
  padding: 30px 20px;
  background-color: #ffffffe6;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  box-shadow: 0 4px 10px #00000033;
  border-radius: 10px;
  gap: 10px;
}

#cookie-banner p {
  font-size: 16px;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

#accept-cookies {
  background-color: #248724;
}

#reject-cookies {
  background-color: #cf3030;
}

.cookie-button {
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-family: 'Quicksand';
}


p, div, li {
  font-size: 1.5rem;
}



.speaker-background {
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow .3s ease;
  cursor: pointer;
  background-color: #949494;
  transition: opacity .3s ease;
  /* padding: 0; */
}

.all-languages-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 0 0 50px 0;
}

.lang {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.lang-name {
  height: 60px;
  width: 220px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity .3s ease;
}











.lang-name:hover, .speaker-background:hover  {
  opacity: 0.8;
}



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;
}

@media screen  and (min-width: 600px) {
  #cookie-banner p {
    font-size: 20px;
  }

  .cookie-button {
    font-size: 20px;
  }
  
  .footer-links {
    margin: 50px 20px;
  }
}