html, body {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

.logo {
  text-indent: -3000px;
  background-image: url('../img/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 500px;
  aspect-ratio: 1/1;
  margin-inline: auto;
  max-width: 90%;
}

.main {
  background: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.info {
  position: absolute;
  top: 0;
  width: 100%;
  padding-block: 10px;
}

.info-container {
  background: #1B2532;
  padding: 5px 0px 5px 0px;
}

.info-list {
  list-style-type: none;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.info-item {
  margin-inline: 8px;
  word-break: break-word;
  align-items: center;
  display: flex;
  gap: 3px;
}

.info-icon {
  fill: #6A80EF;
}

.info-icon svg {
  width: 14px;
  height: 14px;
}

.info-text {
  color: black;
  text-transform: uppercase;
  font-family: "Poppins", Sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  display: inline-block;
}

.title {
  color: black;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 30px;
  text-align: center;
}

.email {
  color: black;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}