/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
.black-ops-one-regular {
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style: normal;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  color:black;
  background-color:white;
  height: 100px;
  border-radius:20px 20px 20px 20px;
}
.bigWords {
  margin-top: 0;
  font-size:40px;
  font-weight: 900;
}
.bigBody {
  display: flex;
  height: 100%;
  margin: 0;
}
.actualPage{
  margin:100px 200px 0 200px;
  height: 100svh;
}
.left {
  color:black;
  background-color:white;
  margin: 10px;
  border-radius:20px 20px 20px 20px;
  width: 20%;
  text-align: center;
}
.right {
  flex-grow: 1;
  color:black;
  background-color:white;
  margin: 10px;
  border-radius:20px 20px 20px 20px;
  text-align: center;
  width: 80%;
}
.center {
  text-align: center;
}
body {
  background-color:black
  /* background-image: url("https://file.garden/"); <-- Temporarily disabled */
}
.foot {
  display:flex;
  background-color:white;
  border-radius:20px 20px 20px 20px;
  height:50px;
  justify-content: center;
  align-items: center;
}
.navButton{color:black;}
.navButton:hover {color:white;background-color:black;}
.continueButton {color:white;background-color:#096e18;padding: 10px 20px;font-size:80px;}