@import url("https://fonts.googleapis.com/css2?family=Monoton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@1&display=swap");

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100vh;
  width: 100vw;
  margin: 0 auto;
  background-color: rgb(22, 22, 41);
  color: rgb(212, 67, 67);
  display: grid;
  grid-template-rows: auto auto 1fr;
  text-align: center;
}

p {
  font-size: 2rem;
  margin: 1rem;
}

h1 {
  font-size: 4rem;
  white-space: nowrap;
}

h2 {
  margin: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  padding: 0.5rem;
  border: 0.1rem solid;
  border-radius: 20%;
}

a:hover {
  color: rgb(245, 155, 155);
}

nav {
  display: flex;
  justify-content: space-evenly;
}

main {
  text-align: center;
}

footer {
  text-align: right;
}

button {
  font-family: "Roboto Mono", monospace;
  background: transparent;
  color: inherit;
  border: 0;
}

#input-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#guess-input {
  font-family: "Roboto Mono", monospace;
  font-size: 1.5rem;
  margin: 0.5rem 0.5rem;
  outline: none;
  background: transparent;
  color: inherit;
  border: 0;
  min-width: 15rem;
  width: 20vw;
  border-bottom: 3px solid;
}

.skipbutton {
  font-size: 2rem;
}

.skipbutton:hover {
  color: rgb(245, 155, 155);
}

.moviefont {
  font-family: "Monoton", cursive;
}

.noshow {
  display: none;
}

.current {
  color: rgb(251, 126, 9);
}

@media only screen and (min-width: 700px) {
  main {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
