body {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;

  background-position: center;

  font-family: Manrope, sans-serif;
}

body * {
  outline: none;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.logo,
.welcome,
.lang,
.my-signature {
  margin: auto;
}

a {
  text-decoration: none;

  -webkit-tap-highlight-color: transparent;
}

.logo img {
  height: auto;
  margin-top: 25px;

  max-width: 55vw;
  max-height: 60vh;
}

@media only screen and (min-width: 575px) {
  .logo img {
    width: 400px;
  }
}

.welcome {
  margin-bottom: 20px;

  padding-left: 15px;
  padding-right: 15px;

  font-weight: 400;
  font-size: 23px;
  letter-spacing: 1px;

  color: #005c67;
}
.choose-text {
  margin-bottom: 0px;

  font-size: 14px;
  font-weight: 600;

  color: #005c67;
}

.lang {
  margin-top: 15px;
  margin-bottom: 25px;
}

.lang img {
  padding: 15px;
  width: 50px;
}

.my-signature {
  margin-bottom: 60px;

  font-weight: 600;
  font-size: 15px;

  color: #005d67b3;
}

.my-signature:hover {
  color: #005c67;
}

@media only screen and (min-width: 1024px) {
  .my-signature {
    margin-bottom: 20px;
  }
}
