@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  background-color: #292929;
  color: #fff;
  margin: auto;
  display: flex;
  justify-content: center;
  min-height: 750px;
  height: 100%;
}

img {
  max-width: 100%;
}

.logo {
  width: 230px;
}

strong {
  color: #3399FF;
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
  margin-right: 6px;
  margin-left: 6px;
  font-weight: 600;
}

.active {
  color: #3399FF;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 1080px;
  min-height: 750px;
}

.description {
  font-size: 20px;
  max-width: 900px;
  margin-top: 25px;
}

.row {
  display: flex;
  flex-direction: row;
}

.space-between {
  justify-content: space-between;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: #fff;
}

.footer {
  font-size: 12px;
}

.footer a {
  margin: auto;
}

.footer-margin {
  margin-right: 60px;
}

.align-right {
  text-align: right;
}

.description a {
  margin: 0;

}


@media (min-width: 768px) {

  body {
    background-image: url('./images/background.webp');
    background-repeat: no-repeat;
    background-position: top center;
  }

  .baner {
    display: none;
  }

  .mobile-column {
    display: flex;
    flex-direction: row;
  }

  .align-right {
    text-align: right;
  }
  body {
    height: 100vh;
  }
  .wrapper {
    padding: 5px 25px;
  }

  .footer {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .mobile-column {
    display: flex;
    flex-direction: column;
  }

  .baner {
    margin-top: 10px;
    margin-bottom: -10px;
  }

  .align-right {
    text-align: left;
  }
  .wrapper {
    padding: 5px 10px;
  }
}
