@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

* {
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 300;
}

body {
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.container {
  width: 100%;
  height: 100vh;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  display: flex;

  padding: 0 24px;
}

.title {
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  text-align: center;
}

.description {
  font-weight: 400;
  text-align: center;
}

.link {
  background: #fff;
  appearance: none;
  text-decoration: none;
  padding: 16px 24px;
  color: #385FF6;

  font-size: 16px;
  font-weight: 400;

  gap: 8px;
  align-items: center;
  display: flex;

}

img {
  max-width: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.link:active,
.link:visited {
  color: #385FF6;
  text-decoration: none;
}

@media (min-width: 768px) {
  .container {
    padding: 0;
  }
}
