@font-face {
  font-family: 'Quicksand';
  src: url('quicksand.ttf') format('truetype');
  font-weight: semi-bold;
  font-style: normal;
}

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%;
}

h1 {
  display: none;
}

main {
  flex: 1;
}



p, div, li {
  font-size: 1.5rem;
}



.speaker-background {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow .3s ease;
  cursor: pointer;
  background-color: #bcbcbc;
  transition: background-color .3s ease;;
}

.play-button {
  height: 20px;
  width: 20px;
  padding: 10px;
}



.lang-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 10rem 0;
}

.lang {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  user-select: none;
}

.lang-color {
  height: 2em;
  width: 2em;
  border-radius: 50%;
}

.lang-name {
  height: 50px;
  width: 220px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color .3s ease;
}

.speaker-background:hover {
  background-color: #878787;
}


.ua {
  background-color: #FFC04C;
}

.ar {
  background-color: #52C2AE;
}

.dafa {
  background-color: #69BAF7;
}

.so {
  background-color: #B09653;
}

.de {
  background-color: #F77E63;
}



.ua:hover {
  background-color: #FFA500;
}

.ar:hover {
  background-color: #09A88C;
}

.dafa:hover {
  background-color: #2A9CF4;
}

.so:hover {
  background-color: #8E6A0A;
}

.de:hover {
  background-color: #F34721;
}

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) {
  .footer-links {
    margin: 50px 20px;
  }
}