html {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  margin: 2rem;
  padding: 2rem;
  gap: 0.5rem;
  align-items: center;
}

h1 {
  font-size: 2rem;
  transition: all 0.5s ease-in-out;
  letter-spacing: 1rem;
}
h1:hover {
  color: #dda15e;
}

p {
  font-size: 1rem;
  text-align: center;
  margin: auto;
}

img {
  height: 15rem;
}

a {
  color: black;
}

a:hover {
  color: #dda15e;
  transition: all 1s ease-in-out;
}

@media (min-width: 600px) {
  img {
    height: 24rem;
  }
  h1 {
    font-size: 8rem;
    font-weight: 100;
    margin: auto;
  }
  p {
    font-size: 1.5rem;
  }
  body {
    display: flex;
    flex-direction: column;
    margin: 2rem;
    padding: 2rem;
    gap: 1rem;
    align-items: center;
  }
}
