@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

body {
    background-color: black;
    color: white;
    font-family: 'Audiowide', sans-serif;
    margin: 0;
    text-align: center;
    scroll-behavior: smooth;
}

.logo {
  width: 150px;
  margin: 0 auto;
  display: block;
  padding-bottom: 30px;
}

.logo img {
  width: 100%;
  height: auto;
  margin-top: 2em;
}

.middle-line {
  width: 30%;
  height: 2px;
  background-color: #ffd700;
  margin: 15px auto;
  box-shadow: 0 0 8px #ffd700;
}

#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease-in-out;
  z-index: 999;
}

.loading-text {
  font-size: 3.5em;
  color: white;
  white-space: nowrap;
}

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffd700;
  font-size: 18pt;
  font-weight: bold;
  transition: all 0.3s ease;
}

.arrow-left {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 25px solid #ffd700;
  margin-right: 10px;
}

.back-button:hover .arrow-left {
  border-right-color: black;
}

.back-button:hover {
  color: black;
  background-color: #ffd700;
  padding: 5px 10px;
  border-radius: 5px;
}
@keyframes dotsAnimation {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
  100% { content: ""; }
}

.dots::after {
  content: "";
  animation: dotsAnimation 1.5s infinite;
}

a {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20pt;
  position: relative;
  top: 1em;
}

a:hover {
  color: rgb(0, 0, 0);
  background-color: #ffd700;
  padding: 5px 10px;
  border-radius: 5px;
}

.scroll-top-button {
  position: fixed;
  bottom: 20px; /* Position it 20px from the bottom */
  right: 20px; /* Position it 20px from the right */
  text-decoration: none;
  color: #ffd700; /* Arrow color */
  transition: all 0.3s ease;
  z-index: 1000; /* Ensure it's above other elements */
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid #ffd700; /* Arrow color */
  margin: 0 auto; /* Center the arrow */
}

.scroll-top-button:hover .arrow-up {
  border-bottom-color: black; /* Change arrow color on hover */
}

.scroll-top-button:hover {
  color: black; /* Change text color on hover */
}

@media (max-width: 320px) {
  img {
    width: 40%;
    height: auto;
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  img {
    width: 35%;
    height: auto;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  img {
    width: 30%;
    height: auto;
    margin: 20px auto;
  }
}
