*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Lexend", sans-serif;
  background-repeat: no-repeat;
}

body {
  margin: 0;
  width: 100%;
  height: 100vh;
  background: #00CACB;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.romboid {
  width: 640px;
  min-width: 640px;
  max-height: 100vh;
  position: relative;
}
.romboid > img {
  width: 100%;
  position: absolute;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.page-content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 100vw;
  padding: 0 2rem;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-content * {
  text-align: center;
  color: white;
}
.page-content h1 {
  font-weight: 600;
  font-size: 38px;
  line-height: 46px;
  margin-top: 22px;
}
.page-content p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 9px;
  padding: 0rem;
  line-height: 24px;
}
.page-content p.pl {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .page-content p.pl {
    padding: 0 1rem;
  }
}
.page-content p:last-of-type {
  margin-top: 15px;
}
.page-content p a {
  color: #00008D;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 600px) {
  .page-content {
    padding: 0 1rem;
  }
}

@media (max-width: 400px) {
  .responsive-br {
    display: none;
  }
}

.lang-button {
  width: 100px;
  height: 40px;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px #00008D;
  border: none;
  background-color: transparent;
  position: fixed;
  z-index: 40;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  color: white;
  font-weight: 600;
}
.lang-button > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 15px 0 12px;
  width: 100%;
  height: 100%;
}
.lang-button > div img {
  width: auto;
}
.lang-button .arrow {
  margin-top: 3px;
}

.change-lang-button {
  position: absolute;
  left: 0;
  top: 110%;
  background-color: #000060;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  padding: 0 15px 0 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  visibility: visible;
  opacity: 1;
  transition: all 0.1s;
  font-size: 15px;
  color: white;
  text-decoration: none;
}
.change-lang-button img {
  width: auto;
  margin-right: 8px;
}
.change-lang-button.hidden {
  visibility: hidden;
  opacity: 0;
}

/*# sourceMappingURL=index.css.map */
