@import "Reset.css";

body {
	display: flex;
	flex-flow: column;
	gap: 10px;
	place-items: center;
	height: 100vh;
  background-color: black;
}

.rock-salt-regular {
  font-family: "Rock Salt", cursive;
  font-weight: 400;
  font-style: normal;
}

h1 {
  color: white;
  font-size: 7vw;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  width: 100%;
}

a {
  color: white;
  text-decoration: none;
  font-size: 2vw;
  margin-bottom: 5px;
  border-bottom: 3px solid black;
}

a:hover {
  transition: border-bottom 0.5s;
  border-bottom: 3px solid white;
}

#hero {
  width: 65vw;
}

img {
  width: 35vw;
}

figcaption {
  color: white;
  text-align: center;
  font-size: 4vw;
}

footer {
    color: white;
}

#ftimg {
    width: 10vw;
}

@media screen and (max-width: 640px) {
  h1 {
    font-size: 10vw;
  }

  nav {
    flex-flow: column;
    place-items: center;
  }

  a {
    font-size: 4vw;
  }

  #hero {
    width: 70vw;
  }

  img {
    width: 50vw;
  }

  figcaption {
    font-size: 5vw;
  }

  footer {
    font-size: 2vw;
  }

  #ftimg {
    width: 15vw;
  }
}