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

html{
  font-family: 'Times New Roman', Times, serif;
  min-height: 100vh;
  min-width: 300px;
  overflow-x: hidden;
  line-height: 1.5;
  scroll-behavior: smooth;
  text-align: center;
}

.intro{
  height: 100vh;
  width: 100%;
  background: linear-gradient(to top right,black, black, rgb(0, 0, 0), purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.intro .attribution{
  text-align: center;
  max-width: 800px;
  padding: 40px;
}

.intro h1{
  margin: 0 0 12px 0;
  font-size: 36px;
  background: linear-gradient(135deg, hsl(311, 45%, 44%), hsl(0, 0%, 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.intro p{
  margin: 0 0 20px 0;
  font-size: 16px;
}

.intro .enter{
  display: inline-block;
  color: #fff;
  background: rgba(82, 0, 82, 0.748);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}


.intro .enter:hover{
  background: #fff;
  color: rgba(82, 0, 82, 0.748);
  transition: all 0.3s ease-in-out;
}

.intro .scroll-indicator{
  margin-top: 18px;
  font-size: 28px;
  opacity: 0.9;
  animation: bounce 2s infinite;
}

main{
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(to top left,black, black, rgb(0, 0, 0), purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.card img{
  border-radius: 50%;
  margin-bottom: 1em;
  margin-top: 1em;
}

.card{
  padding-bottom: 60px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(82, 0, 82, 0.748);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.2px;
  align-items: center;
  margin: 40px auto;
  width: 380px;
  position: relative;
}

.card h1{
  color: #fff;
  font-size: 20px;
}

.card h2{
  color: hsl(0, 0%, 100%);
  font-size: 15px;
  padding-top: 2em;
}

.card p{
  color: rgb(157, 157, 157);
  margin-top: 2em;
  margin-bottom: 2em;
  hyphens: auto;
}

.card a{
  text-decoration: none;
  color: #fff;
  padding: 20px 60px;
  border-radius: 5px;
  justify-content: center;
  display: flex;
  align-items: center;
  hyphens: auto;
  font-size: 15px;
}

.card a:hover{
  outline: solid 1px #ffff;
  border-radius: 10px;
  color: transparent;
  background: linear-gradient(to top right, purple, rgb(255, 255, 255), purple);
  background-clip: text;
}

.card .links{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card .links i{
  font-size: 15px;
  padding-right: 5px;
}


@keyframes bounce{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(8px); }
  100%{ transform: translateY(0); }
}

@media (max-width: 628px) {

}

@media (max-width: 431px) {
  .card a{
    padding: 20px 40px;
    box-sizing: border-box;
    justify-content: center;
  }

  .card{
    width: 90%;
  }

  .card p{
    font-size: 13px;
  }

  .intro h1{
    font-size: 20px;
  }
  .intro p{
    font-size: 14px;
  }

}