<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: 'myfont_1';
  src: url('Epoca.ttf');
}

@font-face {
  font-family: 'myfont_2';
  src: url('Vonem.ttf');
}

@font-face {
  font-family: 'myfont_10';
  src: url('Devlin.ttf');
}

@font-face {
  font-family: 'myfont_11';
  src: url('Aterline.ttf');
}

body {
  font-family: myfont_1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  overflow: auto;
  background-image: url('https://storage.googleapis.com/pai-images/ce7f41d67e404db3af91cf8b9be267fc.jpeg');
  background-size: cover;
  background-position: center;
  animation: backgroundAnimation 20s linear infinite;
}

@keyframes backgroundAnimation {
  0% {
      background-position: 0% 0%;
  }
  100% {
      background-position: 100% 100%;
  }
}

main {
  text-align: center;
  width: 80%;
  max-width: 600px;
  padding: 30px;
  background-color: rgba(115, 109, 109, 0.623);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
  margin: 20px auto; /* Center the main element */
  border: 2px solid #4285f4;
}
main {
  text-align: center;
  max-width: 600px;
  padding: 30px;
  background-color: rgba(115, 109, 109, 0.623);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
  margin: 20px;
  border: 2px solid #4285f4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-family: 'myfont_2';
  color: #4285f4;
  margin-bottom: 15px;
  border-bottom: 2px solid #4285f4;
  padding-bottom: 10px;
  animation: colorChange 1s infinite alternate, slideIn 1s ease-in-out;
}

@keyframes colorChange {
  from {
    color: #f49542;
  }
  to {
    color: #d7cd06;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0);
  }
}

h2 {
  color: aqua;
  margin-top: 20px;
  border-bottom: 1px dashed #4285f4;
  padding-bottom: 10px;
  animation: fadeIn 1s ease-in-out 0.5s;
}

ul {
  list-style: none;
  margin-left: 20px;
  padding-left: 0;
}

li {
  margin-bottom: 10px;
  font-family: 'myfont_10';
  font-size: medium;
  color: #ffffff;
  opacity: 0;
  position: relative;
  animation: fadeIn 1s ease-in-out forwards;
  text-align: left;
}

li::before {
  content: '\2022';
  color: #331735;
  font-size: 1.5em;
  position: absolute;
  left: -20px;
}

p {
  margin-top: 20px;
  color: #ff0000e4;
  block-size: auto;
  font-family: 'myfont_11';
  opacity: 0;
  animation: fadeIn 1s ease-in-out 1s forwards;
}

.registration-link {
  display: inline-block;
  text-align: center;
  margin-top: auto;
  margin-bottom: 20px;
  text-decoration: none;
  color: #42e5f4;
  padding: 10px 20px;
  border: 2px solid #f4f442;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.registration-link:hover {
  background-color: #f4d942;
  color: #ffffff;
}

.registration-link:active {
  transform: scale(0.95);
}

@media only screen and (max-width: 768px) {
  main {
      width: 90%;
  }
}

@media only screen and (max-width: 480px) {
  main {
      width: 80%;
      padding: 20px; /* Adjust padding for smaller screens */
  }
}
/* Media queries for responsive design */

/* For standard mobile phones (e.g., iPhone 8) and small tablets (portrait) */
@media only screen and (max-width: 375px) {
  body {
    background-position: left center; /* Change the animation direction */
  }
}

/* For large mobile phones (e.g., iPhone 8 Plus) and standard tablets (portrait) */
@media only screen and (min-width: 376px) and (max-width: 768px) {
  body {
    background-position: left center; /* Change the animation direction */
  }
}

/* For tablets (landscape) and small desktop screens */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  main {
    max-width: 80%;
  }
}

/* For large tablets (e.g., iPad Pro) and laptops (landscape) */
@media only screen and (min-width: 1025px) and (max-width: 1366px) {
  main {
    max-width: 70%;
  }
}
</pre></body></html>