@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;
}

img {
  width: 50vw;
  margin-bottom: 20px;
}

#submit {
  background-color: white;
  color: black;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  width: 35%;
}

#message {
  width: 90%;
  height: 150px;
}

input {
  border-radius: 10px;
  margin: 5px;
  padding: 3px;
}

label {
  color: white;
  margin-left: 5px;
}

fieldset {
  border-radius: 10px;
  display: inline;
	border: white solid 2px;
  width: 40vw;
}

label::after {
  content: '*';
  color: red;
}

div {
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
  width: 100%;
}

.media {
  width: 15vw;
}

footer {
  color: white;
}

#ftimg {
    width: 10vw;
}

iframe {
  width: 48vw;
}

@media screen and (max-width: 640px) {
  h1 {
    font-size: 10vw;
  }

  nav {
    flex-flow: column;
    place-items: center;
  }

  a {
    font-size: 4vw;
  }

  #hero {
    width: 70vw;
  }

  fieldset {
    width: 85vw;
  }

  #ftimg {
    width: 15vw;
  }
}