* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

:root {
  --animate-duration: 1.2s;
}

body {
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

nav {
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.nav-link {
  cursor: pointer;
  text-decoration: none;
  padding: 8px 24px;
  display: inline-flex;
  background-color: #f0f0f0;
  border-radius: 20px;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 600;
}

.nav-link:hover {
  background-color: #ccc;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 95%; */
  width: 100%;
  margin: 0 auto;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* .separator {
  width: 1px;
  background-color: #eee;
  height: 24px;
} */

.logo-text {
  font-size: 14px;
  letter-spacing: 1.2px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  margin-top: -1px;
  opacity: 0.7;
}

.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.copy-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.title {
  font-size: 40px;
}

.description {
  font-size: 22px;
  line-height: 1.4;
  opacity: 0.6;
  max-width: 56ch;
  width: 100%;
  margin: 0 auto;
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}

.btn {
  outline: none;
  border: none;
  box-shadow: none;
  width: 100%;
  padding: 10px 20px;
  border-radius: 24px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.btn:hover {
  background-color: #000;
  color: #fff;
}

.banner-wrapper img {
  width: 100%;
  transform: scale(1.2);
}

footer {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-wrapper {
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.4;
  text-align: center;
  font-size: 14px;
}
