* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: auto;
}

ul.footer {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0 0 0 0; /* Remove margins */
  text-align: center;
  list-style: none;
}

li {
  display: inline-block;
  margin: 0px 050px 0 0;
}

.icon {
  width: 50px;
  height: 50px;
}

.iframe {
  width: 100%;
  height: 100%; /* Or another value, aspect-ratio takes precedence */
  aspect-ratio: 16 / 9; /* Maintains a 16:9 aspect ratio */
}


.bg-image {
  position: absolute;
  /* bottom: -88%;*/
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 165px 0 124px;
  width: 100%;
  margin: auto;
  border: #fbab40;
  height: 100vh;
  background-size: auto;
  background-color: #242628;
  background-image: url(./assets/world.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 70px;
  background-origin: padding-box;
}

.header h3 {
  text-align: center;
  color: #ff9e40;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.header > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  flex-grow: 0;
  margin: 16px 0px;
}

.logo {
   margin-top: 75px;
   text-align: center;
}

.logo > img {
  width: 64px;
  height: 64px;
}

@media screen and (max-width: 1024px) {
  .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 165px 0px 124px;
    width: 100%;
    margin: auto;
    border: #fbab40;
    height: 100vh;
    background-color: #242628;
    background-image: url(./assets/world.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 70px;
    background-origin: padding-box;
  }
  
  .iframe {
    width: 100%;
    height: 100%; /* Or another value, aspect-ratio takes precedence */
    aspect-ratio: 16 / 9; /* Maintains a 16:9 aspect ratio */
  }

}

@media screen and (max-width: 600px) {

.container{
    min-width: 445px;
    min-height: 600px;
    flex-wrap: nowrap;
    background-color: #242628;
    background-size: contain;
    background-position-y: center;
  }

  iframe {
    width: 100%;
    height: 100%; /* Or another value, aspect-ratio takes precedence */
    aspect-ratio: 16 / 9; /* Maintains a 16:9 aspect ratio */
  }
}  
