body {
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.main {
  width: 100%;
  max-width: 750px;
  min-width: 400px;
  max-height: 750px;
  margin-top: -115px;
}

.start-main {
  width: 90%;
  max-width: 750px;
  min-width: 300px;
  max-height: 750px;
}

h3 {
  text-align: center;
  color: rgb(255, 255, 255);
  font-family: "Gaegu", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: xx-large;
}

h1 {
  color: white;
  font-family: "Gaegu", sans-serif;
  font-weight: bolder;
  font-style: normal;
  font-size: 100px;
  margin: 0;
}

p {
  color: white;
  font-family: "Gaegu", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 100px;
  margin: 0;
  text-align: center;
  margin-bottom: 70px;
  margin-top: -50px;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: x-large;
  }

  a {
    font-size: xx-large;
  }

  p {
    font-size: 80px;
  }
}

@media screen and (max-width: 480px) {
  h3 {
    font-size: large;
  }

  a {
    font-size: x-large;
  }

  p {
    font-size: 50px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.restart-button {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: xxx-large;
}

.restart-button:hover {
  color: red;
  font-style: oblique;
}

.loveMob {
  width: 70%;
  max-width: 400px;
  min-width: 250px;
}

.image-button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.image-button img {
  height: auto;
  position: absolute;
  transition: opacity 0.3s ease;

  width: 50%;
  max-width: 400px;
  min-width: 200px;
}

.hover-enter {
  opacity: 0;
}

.image-button:hover .enter {
  opacity: 0;
}

.image-button:hover .hover-enter {
  opacity: 1;
}

.start-button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.start-button img,
.start-button .start {
  height: auto;
  position: absolute;
  transition: opacity 0.3s ease;
  width: 50%;
  max-width: 300px;
  min-width: 150px;
  color: white;
  font-family: "Gaegu", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 120px;
  text-align: center;
  margin: 0;
  line-height: 100%;
}

.hover-start {
  opacity: 0;
}

.start-button:hover .start {
  opacity: 0;
}

.start-button:hover .hover-start {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .start-button img,
  .start-button .start {
    font-size: 100px;
    width: 40%;
  }
}

@media screen and (max-width: 480px) {
  .start-button img,
  .start-button .start {
    font-size: 70px;
    width: 40%;
  }
}