@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

:root {
  --font: "Play", sans-serif;
  --font-weight: 400;
  --font-style: normal;
}
   
body {
  font-family: var(--font);
  font-weight: var(--font-weight);
  font-style: var(--font-style);
}

.play-regular {
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.play-bold {
  font-family: "Play", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* Main content */
.main {
  font-size:22px;
  margin-left: 225px; /* Same as the width of the sidenav */
  background-color: white;
  color: black;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  padding-bottom: 2rem;
}

.box1, .box2 {
  max-width: 40rem;
  height: fit-content;
  background: #e4e3e3;
  padding: 0 1rem;
  margin-top: 2rem;
  
}

.box1 h2, .box2 h2 {
  font-size: 28px;
  padding: 5px;
  margin-bottom: 0;
  background-color: #cc66ff;
  border: 3px solid white;
  box-shadow: 0 0 5px 1px #e6b7ff;
  color: white;
}

.box1 p, .box2 p {
  display: block;
  margin-bottom: 0;
}

/* button stuff */
#pages .button {
  min-width: 100px;
  padding: 8px;
  border: 3px solid white;
  box-shadow: 0 0 5px 0 black;
  cursor: pointer;
  background-color: #f9e6ff;
  transition: all 0.2s ease-in-out 0ms;
  user-select: none;
}

#pages .button:hover {
  background-color: #e6b7ff;
  border: 3px solid white;
  box-shadow: 0 0 10px 0 #e6b7ff;
  color: #600080;
}

#pages ul {
  padding: 0;
  padding-bottom: 15px;
}

#pages a {
  text-decoration: none;
}
