* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
:root {
  --yellow: #f2ad0d;
  --red: #aa7c66;
  --green: #8e9d5d;
  --blue: #2980b9;
}
.all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100dvh;
  width: 100dvw;
  flex-direction: column;
  /* background: linear-gradient(#66acdb35, 70%, #2980b9); */
}
img {
  margin-top: 16px;
}
.address {
  display: flex;
  align-items: center;
  justify-content: baseline;
  font-size: large;
}
.address > div {
  padding-right: 10px;
  font-size: larger;
  color: var(--red);
}

.button-container {
  display: flex;
  justify-content: space-between;
  padding: 10px 40px;
}
button {
  padding: 10px 12px;
  border: none;
  border-top: 3px solid;
  border-left: 3px solid;
  border-radius: 10px;
}
button:active {
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
.button-container a {
  margin: 0px 10px;
}

.yellow {
  border-color: var(--yellow);
}
.red {
  border-color: var(--red);
}
.green {
  border-color: var(--green);
}
.blue {
  border-color: var(--blue);
}

footer {
  background-color: white;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
footer > a {
  color: var(--red);
}

/* __________________________ */
.navbar__wrapper-logo {
  position: static;
  width: 100%;
  left: 0;
  top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: -1;
}
.navbar__logo--scroll .navbar__logo__img {
  max-width: 12rem;
}

.center {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  flex-direction: column;
  /* border: 1px solid black; */
}

.lang {
  all: unset;
  border: 1px solid black;
  border-radius: 2px;
  padding: 3px 15px;
  margin: 10px 7px;
}
.lang:hover {
  background-color: #459bd5;
  color: white;
}
.langContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.pdf-page {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.wellcome {
  animation: slideIn 1.5s ease-out;

  padding: 20px 30px;
  border: 2px solid #f0f8ff;
  max-width: 300px;
  margin: 40px auto;
  font-size: 2rem;
  color: #f0f8ff;
}
/* ... */
.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 100px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f4f4f4;
}
