* {
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 720px) {
  body,
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  body,
  html {
    font-size: 12px;
  }
}

body {
  position: relative;
}

#language {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  #language {
    text-align: right;
  }
}
#language a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5rem;
  text-decoration: none;
  color: #6F8CAA;
  margin-right: 0.3rem;
}
#language a:hover, #language a.active {
  color: #3B5D80;
}
#language a:hover:hover, #language a.active:hover {
  color: #6F8CAA;
}

img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 720px) {
  img {
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 1400px) {
  img {
    width: auto;
    height: 100vh;
  }
}

h1 {
  font-family: "Courgette", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 0;
  color: #123253;
}
@media screen and (min-width: 720px) {
  h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }
}

span {
  font-style: normal;
  font-weight: 400;
  font-size: 1.38rem;
  line-height: 1.688rem;
  color: #6F8CAA;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 1.38rem;
  line-height: 1.888rem;
  color: #6F8CAA;
  margin-top: 1rem;
  margin-bottom: 0rem;
}
@media screen and (min-width: 900px) {
  p {
    margin-bottom: 2.5rem;
    max-width: 640px;
  }
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  p {
    font-size: 1rem;
    max-width: 60%;
    margin: 1rem auto;
    line-height: 1.1rem;
  }
}
p a {
  position: relative;
  text-decoration: none;
  color: #2b578a;
  outline: none;
  white-space: nowrap;
}
p a::before {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #193452;
  top: 100%;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
  content: "";
}
p a:hover {
  color: #193452;
  outline: none;
  transition: all 0.3s;
}
p a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.button {
  text-decoration: none;
  background: #3B5D81;
  border-radius: 10px;
  outline: none;
  font-family: "Courgette";
  font-style: normal;
  font-weight: 400;
  font-size: 1.38rem;
  line-height: 4rem;
  padding: 0.5rem 1.5rem;
  color: #FFFFFF;
}
.button:hover {
  background: #25405d;
}

footer {
  position: fixed;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 1rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
  /* identical to box height */
  color: #6F8CAA;
}
@media screen and (min-width: 900px) {
  footer {
    position: absolute;
    text-align: left;
    bottom: 1rem;
  }
}

@media screen and (min-width: 900px) {
  #site {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
}

.container {
  padding: 3rem;
}
@media screen and (min-width: 900px) {
  .container {
    display: table;
    margin: 0 auto;
    max-width: 1600px;
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .container section {
    width: 50%;
    display: table-cell;
  }
}
.container #text {
  text-align: center;
  position: relative;
}
.container #text .button {
  display: none;
}
@media screen and (min-width: 900px) {
  .container #text .button {
    display: inline;
  }
}
.container #text::after {
  content: "";
  clear: both;
  display: table;
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  .container #text {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 900px) {
  .container #text {
    text-align: left;
    vertical-align: middle;
  }
}
.container #image {
  margin: 2rem 0;
  text-align: center;
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  .container #image {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .container #image {
    margin: 0;
  }
}
.container #image img {
  max-width: 70%;
}
@media screen and (min-width: 900px) {
  .container #image img {
    max-width: 90%;
  }
}
.container #mobile-button {
  text-align: center;
  display: block;
}
@media screen and (min-width: 900px) {
  .container #mobile-button {
    display: none;
  }
}
