* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: white;
}
body {
  background-color: hsl(0, 0%, 8%);
  color: white;
  font-family: Inter;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}
#card {
  width: 25%;
  padding: 2%;
  background-color: hsl(0, 0%, 12%);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#img {
  border-radius: 50%;
  width: 6.25rem;
  height: 6.25rem;
}
h1 {
  padding: 0.9375rem 0 0 0 0;
}
p {
  padding: 0.9375rem 0;
}
#tag-line {
  color: rgb(220, 220, 77);
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-direction: column;
}
.button {
  background-color: hsl(0, 0%, 20%);
  border-radius: 6px;
  width: 13.625rem;
  height: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button:hover {
  background-color: hsl(0, 0%, 10%);
}
.home {
  display: flex;
  justify-self: center;
}

@media screen and (max-width: 900px) {
  h1{
    text-align: center;
  }
  body{
    background-color: hsl(0, 0%, 8%);
    height: 100vh;
  }
  p{text-align: center;}
  .button {
    background-color: hsl(0, 0%, 20%);
    border-radius: 6px;
    width: 6.25rem;
    height: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  #card {
    width: 80%;
    padding: 2%;
    background-color: hsl(0, 0%, 12%);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
