@font-face {
  font-family: 'CustomFont';
  src: url('fonts/font.ttf') format('truetype');
}

body {
  font-family: 'CustomFont', Arial, Helvetica, sans-serif;

  background-image: url('assets/ScrollingBG.png');
  background-size: auto;
  background-attachment: fixed;
  background-position: 0 0;
  animation: scrollBackground 5s linear infinite;

  transition: background-image 0.5s ease-in-out;
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 calc(100vh - 100%);
  }
}

h1 {
  font-size: 56px;
  margin: 10px;
  text-align: center;

  background: -webkit-linear-gradient(#FF0F53, #880F53, #330F53);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 32px;
  margin: 10px;

  color: white;

  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 5px;
}

h3 {
  font-size: 24;
  margin: 10px;

  color: white;

  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 5px;
}

p {
  font-size: 24px;
  margin: 10px;

  color: white;

  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 5px;
}

ul {
  font-size: 20px;
  margin: 10px;

  color: white;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 35px;
}

textarea {
  flex: 1;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  border: 1px solid #FF0F53;
  resize: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.65);
}

button {
  background-color: #FF0F53;
  color: white;
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;

  transition: transform 0.25s ease-in-out;
}

button:hover {
  background-color: #880F53;

  transform: scale(1.05);
  transition: transform 0.25s ease-in-out;
}

button:active{
  background-color: #330F53;
}

.tooltip {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

button:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.topbar {
  background-color: black;
  width: 100%;
  text-align: left;
}

.topbar button {
  background-color: transparent;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.screenshot {
  transition: transform 0.25s ease-in-out;
}

.screenshot:hover {
  transform: scale(1.05);
  transition: transform 0.25s ease-in-out;
}

.neo-geo-changed-background {
  background-image: url('assets/ScrollingBG_NeoGeo.png');
  transition: background-image 0.5s ease-in-out;
}

.container {
  margin: 0 auto;
  max-width: 400px;
}

body.updates-background {
  font-family: 'CustomFont', Arial, Helvetica, sans-serif;

  background-image: url('assets/ScrollingBG_NeoGeo.png');
  background-size: auto;
  background-attachment: fixed;
  background-position: 0 0;
  animation: scrollBackground 5s linear infinite;

  transition: background-image 0.5s ease-in-out;
}