/* General */
html {
  font-size: 62.5%;
  font-family: "Josefin Slab", serif;
}
body {
  background-image: linear-gradient(
      180deg,
      rgba(30, 34, 67, 1) 0%,
      rgba(5, 42, 98, 0.295) 100%
    ),
    url("../images/background.jpg");

  background-blend-mode: normal;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  display: flex;
  background-image: url("../images/numbers.svg");
  background-size: cover;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  font-size: 4rem;
}
hr {
  opacity: 0.5;
}
p {
  color: white;
}
h1 {
  font-size: 8rem;
  margin: 1.5rem 0;
  color: white;
  font-family: "Irish Grover", system-ui;
  letter-spacing: 1rem;
}
h2 {
  font-size: 6rem;
  color: white;
  margin: 2rem;
}
h3 {
  font-size: 5rem;
  font-style: italic;
  letter-spacing: 1rem;
  color: white;
  margin: 0;
}
button {
  border: none;
  cursor: pointer;
}

/* Input */
.guess_input {
  padding: 1rem 5rem;
  border: none;
  border-radius: 5px;
}
.guess_input:focus {
  outline: none;
  border: none;
}

/* Lists */
ul {
  list-style: none;
  padding-left: 0;
}
/* Links */
.link {
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}
.link--transition:hover {
  transform: scale(1.5);
  color: #b5caff;
}

/* Header */
.header__top {
  display: flex;
  justify-content: center;
}
nav {
  margin: 0rem;
}
.nav__ul {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  margin: 0;
  font-size: 2rem;
  position: relative;
}
.nav__ul li {
  font-size: 4rem;
  font-style: italic;
}
.play-btn {
  background: #4e6192;
  font-family: "Joti One", serif;
  border-radius: 60px;
  display: flex;
  padding: 1.5rem 3rem;
  transition: all 0.3s ease-in-out;
}
.play-btn:hover {
  background: #7693de;
}
.play-btn span {
  padding: 0 1rem;
}
/* Grids */
.container {
  width: 1140px;
}
.grid-container {
  display: grid;
  grid-template-columns: 40% 60%;
  justify-items: center;
  align-items: center;
  justify-content: center;
}
.grid-container p {
  margin: 1.5rem;
}
.grid-container--play {
  grid-template-columns: min-content min-content;
}
.grid-container--play p {
  font-size: 6rem;
  margin: 4rem;
}

/* Footer */
footer {
  background-color: #052a62;
  display: flex;
  justify-content: center;
}

.copyright {
  font-size: 3rem;
  color: white;
  align-items: center;
  margin: 1rem;
}
