* {
  margin: 0px;
  padding: 0px;
}

@font-face {
  font-family: "londrina";
  src: url(../fonts/Londrina_Outline/LondrinaOutline-Regular.ttf);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background-image: url("../img/wall.png");
}

p {
  display: flex;
  justify-content: center;
  font-family: "londrina";
  font-weight: bold;
  font-size: 25px;
  color: white;
}

header {
  height: 200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

header a {
  background-color: #ff0000;
  font-size: 45px;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 3px #000;
  padding: 15px 30px;
  font-family: "londrina";
  font-weight: bolder;
  color: #fff;
}

header a:hover {
  opacity: 0.9;
}

header :nth-child(2) {
  background-color: #00ff1e;
}

header :nth-child(3) {
  background-color: #fe077e;
}

header :nth-child(4) {
  background-color: #5e00ff;
}

.about {
  display: flex;
  justify-content: center;
}

.about h1 {
  color: #fff;
  font-size: 55px;
  font-family: "londrina";
  font-weight: bolder;
}

.gamebox {
  display: flex;
  justify-content: center;
}

.game {
  display: flex;
  flex-direction: column;
  width: 350px;
  height: 450px;
  margin: 10px 100px 50px 100px;
  padding: 0px 10px 0px 10px;
  background-color: #1b1e25;
  box-shadow: 0px 0px 20px 3px #000;
}

.game a:hover {
  color: rgb(111, 111, 111);
}

.spellink {
  display: flex;
  justify-content: center;
  font-family: "londrina";
  font-weight: bold;
  font-size: 30px;
  margin-top: 10px;
  color: white;
  text-decoration: none;
}

.xavierspelImg {
  width: 350px;
  height: 230px;
  border-radius: 3%;
}

.anime-container {
  position: relative;
}

.anime-container .dot {
  position: absolute;
  border-radius: 50%;
  background-color: hsl(4, 100%, 60%);
  pointer-events: none;
}

footer {
  display: flex;
  width: 100%;
  height: 24vh;
  background: radial-gradient(circle, #3d3d40 40%, #5c5a5b 100%);
  justify-content: space-between;
  align-content: flex-end;
  flex-wrap: wrap;
  margin-top: auto;
}

button {
  display: flex;
  justify-content: center;
  width: 100%;
  font-family: "londrina";
  font-size: 25px;
  color: white;
  font-weight: bold;
  background: none;
  border: none;
}

button:hover {
  cursor: pointer;
  opacity: 0.5;
}

.description1 {
  font-family: "londrina";
  flex-direction: column;
  display: none;
}

.description1 p {
  font-weight: bold;
  font-size: 20px;
  color: white;
  margin-top: 10px;
}

.description2 {
  font-family: "londrina";
  flex-direction: column;
  display: none;
}

.description2 p {
  font-weight: bold;
  font-size: 20px;
  color: white;
  margin-top: 10px;
}

@media only screen and (max-width:600px){

  header{
      flex-wrap: wrap;
  }

  footer img{
      width: 150px;
  }

  .gamebox{
    flex-direction: column;
  }

  .game{
    margin-left: 25px;
  }

  .logo{
      margin-top: 30px;
  }

  p{
      text-align: center;
  }

}