/* == WEB FONT IMPORT == */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
/* == General Styles == */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  height: 100%;
  font-size: 14px;
  line-height: 1.42857143;
}
a,
.trans {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.logo {
  height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  height: 60%;
  max-height: 340px;
}
.middle {
  background: #122c48;
  color: white;
  height: 47vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 200;
}
@media only screen and (max-width: 768px) {
  .middle {
    font-size: 22px;
  }
}
.bottom {
  background: #0e233a;
  color: white;
  height: 28vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.bottom__inner {
  text-align: center;
  line-height: 32px;
}
@media only screen and (max-width: 768px) {
  .bottom__inner {
    font-size: 14px;
    line-height: 24px;
  }
}
.bottom__inner a {
  color: white;
  transition: color 0.5s ease;
}
.bottom__inner a:hover {
  color: #007aa1;
}
