



html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
}
a {
  color: #ffffff;
  text-decoration: none;
}
.container,
.container-inner {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center; 
}
.logo {
  position: absolute;
  left: 50px;
  top: 50px;
}
.container {
  background-color: rgba(255, 255, 255, 0);
  height: 100vh;
}
.container-inner {
  width: 1000px;
}
.info-holder {
  text-align: center;
  color: #ffffff;
  padding: 32px;
  overflow: hidden;
}
.info-holder h2 {
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 2rem;
}
.info-holder p span {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 300;
}
.logo img {
  width: 250px;
}
@media (max-width: 768px) { 
  .logo {
    position: block;
    text-align: center;
  }
}