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

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px;
}

a{
  text-decoration: none;
}
input{
  outline: none!important;
  box-shadow: none!important;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

nav{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: #aaa;
  margin: 5px 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

nav a:after{
  display: inline-block;
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color:#aaa;
  margin-left: 20px;
  margin-top: 3px;
}

nav a:last-child:after{
  display: none;
}

.app-store {
  background-color: #333;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
}

main {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gradient-text {
  font-size: 6rem;
  font-weight: bold;
  background: linear-gradient(to right, #4facfe, #38f9d7, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  margin-top: 20px;
  color: #ccc;
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.subscribe input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 300px;
  max-width: 90%;
}

.subscribe button {
  padding: 10px 20px;
  border: none;
  background-color: #fff;
  color: #111;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: .4s;
  &:hover{
    background-color: #aaa;
  }
}

.notify-hint {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
}

footer {
  display: flex;
  justify-content: center;
  padding: 20px;
  font-size: 14px;
  color: #888;
  margin-top: 32px;
}
footer  a{
  color: #aaa;
}
@media (max-width: 767px) {
  .gradient-text {
    font-size: 4rem;
  }
  nav{
    display: none;
  }
}


/* Animation for main heading */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

.description,
.subscribe,
.notify-hint {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.description {
  animation-delay: 1s;
}

.subscribe {
  animation-delay: 1.5s;
}

.notify-hint {
  animation-delay: 2s;
}


