body {
    background-color: rgba(137, 43, 226, 50);
    color: white;
    text-align: center;
    font-family: "gyparody", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-family: "gyparody", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-family: "mr-eaves-modern", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-family: "mr-eaves-modern", sans-serif;
    font-weight: 700;
    font-style: normal;
}

#game-background {
    opacity: 70%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }

#main-background {
    opacity: 90%;
    mix-blend-mode: color-burn;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

#board {
    width: 630px;
    height: 630px;
    background-color: rgba(173, 216, 230, .5);
    border: 5px solid #cebeea;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

#board img {
    width: 70px;
    height: 70px;
}

#stats {
    font-family: "gyparody", sans-serif;
    margin-top: 80px;
    margin-bottom: 5%;
}

#stats h1 {
    font-size: 50px;
    margin-bottom: -10px;
}

#start {
    margin: auto;
    margin-top: 10%;
    margin-bottom: 10%;
    width: 90%;
    height: 90%;
}

#start img {
    display: block;
    margin: auto;
    margin-top: 100px;
    width: 50%; 
}

#start h1 {
    font-family: "gyparody", sans-serif;
    font-size: 200px;
}

button {
    background-color:rgba(150, 68, 210,.3);
    color: #cebeea;
    font-family: "mr-eaves-modern", sans-serif;
    font-weight: 700;
    margin: 20px;
    margin-top: 70px;
    padding: 10px 60px 10px;
    border-radius: 3px;
    border-color: #cebeea;
}

 button:hover {
    background-color:rgba(150, 68, 210,.8);
}

#about {
    margin: auto;
    width: 25%;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: left;
    line-height: 24px;
}

#about h1 {
    font-family: "gyparody", sans-serif;
    font-weight: 100;
    font-size: 40px;
    margin-top: 70px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: solid;
}

#about h2 {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#about h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
}

#about p {
    font-size: 18px;
    font-weight: 100;
    margin-bottom: 10px;;
}

#about button{
    width: 150px;
    display: block;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    padding: 10px 20px 10px;
    border-radius: 3px;
}