body {
  font-family: Tahoma, sans-serif;
  margin: 0;
  padding-top: 20px;
  /*background-image: url("./resources/pexels-pixabay-68507.jpg");
  background-size: 100%;*/
}

.container {
  padding-bottom: 20px;
  text-align: center;
}

#header,
.headerInfo {
  font-size: 60px;
  font-weight: bold;
  padding-bottom: 20px;
  color: black;
  text-shadow: 3px 3px white;
}

h1 {
  text-align: center;
  margin-top: 50px;
}

#homeLink {
  font-weight: bold;
  color: black;
  font-size: 24px;
  float: right;
  margin-right: 50px;
}

a:link {
  text-decoration: none;
}


a:visited {
  text-decoration: none;
}


a:hover {
  text-decoration: none;
}


a:active {
  text-decoration: none;
}

form {
  display: inline-block;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
  height: 300px;
  text-align: center;
  /* background-color: #aba4f8;*/
}

label {
  margin: 5px;
  font-weight: bolder;
  font-size: 60px;
}

p#feedback {
  font-weight: bold;
  font-size: 36px;
}

.errorFeedback {
  color: darkred;
}

input[type="text"] {
  margin: 5px;
  width: 550px;
  border: 1px solid black;
  font-size: 72px;
}

input[type="number"] {
  margin: 5px;
  width: 150px;
  border: 1px solid black;
  font-size: 72px;
}

.mathPart1,
.mathPart2 {
  font-size: 72px;
}

input:focus {
  border: 1px solid black;
}

*:focus {
  outline: 1px solid black;
}

input[type="submit"] {
  display: block;
  margin: 20px auto;
}

#result-section {
  display: block;
  margin-top: 50px;
  text-align: center;
}

#result-text {
  font-size: 20px;
  font-weight: bold;
}

#timer,
#end-msg {
  font-size: 20px;
  font-weight: bold;
}

svg text {
  font-size: 36px;
}

svg text.selectable {
  cursor: pointer;
}

div.gameboard {
  background-color: pink;
  border: 1px solid black;
  width: 600;
  height: 600;
}

form {
  display: inline-block;
  justify-content: center;
  margin-top: 50px;
  width: 600px;
  text-align: center;
}

.mainButton,
.gameSelectButton,
.profileButtonSelect {
  background-color: #0059b3;
  color: white;
  width: 300px;
  height: 75px;
  margin-top: 50px;
  font-size: 32px;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 12px;
  margin-left: 10px;
}

#profileSubmit {
  background-color: #0059b3;
  color: white;
  width: 200px;
  height: 75px;
  margin-top: 50px;
  font-size: 36px;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 12px;
}

.points {
  font-family: Courier, monospace;
  font-size: 26px;
  font-weight: bold;
  justify-content: right;
  display: flex;
  width: fit-content;
  border: 1px solid black;
  border-radius: 13px;
  padding: 8px;
  background-color: #ddd;
  margin-left: auto;
  margin-right: 0;
}

#celebrationTextContainer {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  font-weight: bold;
  font-size: 36px;
  padding-top: 350px;
}

#celebrationPanel {}

#celebration {}

.mainHeader {
  position: relative;
  width: 100%;
  height: 50px;
  padding-left: 25px;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }

  .content {
    height: 30vh;
  }

  h1 {
    font-size: 24px;
  }
}