*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: #70f2fc;
  padding: 0;
  margin: 0;
  min-width: 100vw;
  min-height: 95vh;
}

h1, h2, h3, h4 {
  font-family: 'EB Garamond', serif;  
  text-align: center;
}

h1 {
  font-size: 2.3rem;
}

h2 {
 font-size: 1.6rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

/* Classes */
.container-trivia {
  margin: 2vh 4vw;
  border: 2px solid black;
  border-radius: 5px;
  box-shadow: 0 0 8px 4px;
  padding: 0.7vh 2vw;
  background-color: #f9f9f9;
  min-height: auto;
  min-width: min-content;
}

.btn {
  font-size: calc(0.8rem + 0.3vw);
  margin: 1vh 1vw;
  padding: 10px 1%;
  border: 2px solid black;
  border-radius: 4px;
  color: black;
  background-color: white;
  font-family: 'Inconsolata', monospace;
  font-weight: 600;
  width: calc(80px + 7vw);
  display: inline-block;
  text-align: center;
}

.btn:hover {
  background-color: #70f2fc;
}

/* General */
.clear-float{
  clear: both;
}

.hide { /* *Keep at bottom of stylesheet */
  display: none;
}

.display-block {
  display: block;
}
