@font-face {
  font-family: "MarioPartyHudson";
  src: url("fonts/Mario-Party-Hudson-Font.eot");
  src: url("fonts/Mario-Party-Hudson-Font.eot?#iefix") format("embedded-opentype"),
       url("fonts/Mario-Party-Hudson-Font.woff2") format("woff2"),
       url("fonts/Mario-Party-Hudson-Font.woff") format("woff"),
       url("fonts/Mario-Party-Hudson-Font.ttf") format("truetype"),
       url("fonts/Mario-Party-Hudson-Font.svg#MarioPartyHudson") format("svg");
  font-weight: normal;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-color: gray;
  background-image: url("/images/sunset.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: black;
  font-family: "MarioPartyHudson", Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.center-box {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 48px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 24px;
  line-height: 1.5;
}

.page-gif {
  display: block;
  margin: 0 auto 20px auto;
  flex-shrink: 0;
}

.error-page {
  background-color: black;
  background-image: url("/images/dusk.png");
  background-size: cover;
 background-position: center;
  background-repeat: no-repeat;

  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.error-box {
  text-align: center;
  max-width: 600px;
  margin: 0 20px;
}

.error-title {
  font-size: 64px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: black;
}

.error-text {
  font-size: 28px;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  color: black;
}

.syneaffle-page {
  background: none;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  text-align: center;
  height: 100vh;
}

.secret-message {
  color: rgb(2, 2, 2);
  margin-top: 20px;
  font-size: 34px;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
