html {
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  background-image: url("../img/background.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  min-height: 100%;
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}
.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1f1f1f;
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  min-height: 80%;
  width: 80%;
}
@media only screen and (max-width: 600px) {
  .center {
    padding: 10px;
  }
}
.result-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: #033470;
  padding: 30px;
}
.btn {
  border-radius: 0px !important;
}
.btn-primary {
  background-color: #033470 !important;
}
.title {
  margin-left: 10px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
}
.language-flags {
  margin: 20px;
  width: 300px;
  max-height: 300px;
  object-fit: contain;
  border: solid 2px black;
  transition-duration: 0.2s;
  border-radius: 20px;
}
.language-flags:hover {
  transform: scale(1.1);
}
.sub-title {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
  color: #c5c5c5;
}
.download_tile {
  background-color: #033470;
  color: white;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 10px;
}
a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: gray;
}
