html,
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/***************
Log In
****************/

.loginView {
  width: 100%;
  min-height: 777px;
  background-image: url('assets/backgrounds/menu2.2.png');
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.loginView h1 {
  margin: 0;
  text-align: center;
}

.grimmLogo {
  padding-top: 3%;
}

form {
  padding-top: 3%;
  max-width: 30%;
  margin: auto;
  color: white;
  font-size: 2em;
}

form h3 {
  padding: 5%;
  margin: 0;
  text-align: center;
  color: white;
}

.whiteButton {
  background: white;
  color: black;
}

.greyButton {
  background: rgb(64, 59, 59);
}

/***************
Menu Styling
****************/

#menu {
  width: 100%;
  min-height: 777px;
  background-image: url('assets/backgrounds/menu1.2.png');
  background-size: cover;
  background-repeat: no-repeat;
}

#menu h1 {
  padding-bottom: 1%;
  text-align: center;
  color: rgb(77, 8, 8);
  font-size: 2.5em;
}

.startBtn {
  background: rgb(64, 59, 59);
  width: 300px;
  font-size: 2.5em;
  position: fixed;
  bottom: 8%;
  right: 38%;
}

.logoutBtn {
  background: rgb(152, 146, 146);
  width: 150px;
  font-size: 2em;
  position: fixed;
  top: 8%;
  right: 10%;
}

/************
Game View
************/

.gameView {
  width: 100%;
  min-height: 777px;
  background-image: url('assets/backgrounds/menu2.2.png');
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.menuBtn {
  font-size: 2em;
  margin-top: 1%;
  background: rgb(64, 59, 59);
  width: 300px;
}

.gameView img {
  display: block;
  margin: auto;
  padding: 1%;
  border-radius: 2em;
}

canvas {
    padding: 0;
    margin: auto;
    display: block;
    width: 100%;
    border-radius: 2em;
}

/************
Win View
************/

.win {
  width: 100%;
  min-height: 777px;
  background-image: url('assets/backgrounds/menu2.2.png');
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.winTextBg {
  background: white;
  border-radius: 2em;
  opacity: 0.7;
  max-width: 70%;
  padding: 0 5%;
  position: fixed;
  top: 10%;
  left: 22%;
}

.win button {
  font-size: 2.5em;
  background: rgb(64, 59, 59);
  margin-top: 3%;
  margin-bottom: 2%;
}

.winText {
  padding-top: 10%;
  text-align: center;
  font-size: 8em;
  color: #red;
}
