body {
  background-image: url("/assets/images/background.png");
  height: 100vh;
  background-color: #ffa500;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 16px;
}

.main-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  height: 150px;
  width: 150px;
  border-radius: 25px;
  border-width: 4px;
  border-style: solid;
  border-color: white;
  background-color: #ffa500;
}

.slogan {
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: white;
  margin: 40px 0;
  text-transform: capitalize;
  max-width: 30ch;
}

.store-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 8%;
}

.store-cta a {
  height: 80px;
  width: 240px;
  background-color: black;
  border-radius: 16px;
  transition: all 150ms ease-in-out;
}

.store-cta a:hover {
  transform: scale(0.95);
}

.store-cta img {
  height: 80px;
  user-select: none;
}

.links {
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.links a {
  transition: all 150ms ease-in-out;
}

.links a:hover {
  transform: scale(0.95);
}

.links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.links a:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.links a:first-child img {
  height: 24px;
  width: 24px;
}

@media (max-width: 768px) {
  .logo {
    height: 100px;
    width: 100px;
    border-radius: 18px;
    border-width: 4px;
    border-style: solid;
    border-color: white;
    background-color: #ffa500;
  }

  .slogan {
    font-size: 24px;
    line-height: 32px;
    margin: 28px 0;
  }

  .store-cta {
    flex-wrap: wrap;
    gap: 16px;
  }

  .store-cta a {
    height: 50px;
    width: 150px;
  }

  .store-cta img {
    height: 50px;
  }
}
