@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';

body {
  background-image: url('https://cdn.discordapp.com/attachments/1138469347346612285/1174834963623989338/tokyo_pink.png?ex=65690952&is=65569452&hm=83e4c17423bffed49388cfaaf7c9e6547e04c64ec6e51a03bbc89aa0a4b344e4&');
  backdrop-filter: blur(10px);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  text-align: center;
}

nav {
  background-color: transparent;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 50px;
  font-family: 'Arial', sans-serif;
  padding: 10px 0;
}

nav ul li {
  margin: 0 10px;
  text-align: center;
}

nav ul li a {
  color: #fa60E4;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 10px;
  transition: color 0.3s ease, background-color 0.3s ease;
  color: #fff;
  text-align: center;
}
p {
  color: #fff;
  text-align: center;
}

nav ul li a:hover{
  color: #3498db;
  
}

header {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: #fff; /* Change to contrast with the background */
  padding: 20px 0;
  font-family: 'Arial', sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;

}

h1 {
  text-align: center;
  font-size: 50px;
  font-family: 'Arial', sans-serif;
  color: #fff; /* Change to contrast with the background */   
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader div {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: rgb(219, 52, 80);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loader div:nth-child(1) {
  animation-delay: -0.32s;
}

.loader div:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  } 
  40% {
    transform: scale(1.0);
  }
}

footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
@media (max-width: 600px) {
  nav ul li a {
    font-size: 18px;
  }

}
  @media (max-width: 400px) {
      nav ul li a {
      font-size: 16px;
      }
  }

  @keyframes slideIn {
      0% {
        transform: translateY(100%);
      }
      100% {
        transform: translateY(0);
      }
    }
    
    footer {
      animation: slideIn 1s ease-out;
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
      }
  }

    html {
      scroll-behavior: smooth;
    }

    @keyframes fadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
    
    .your-element {
      animation: fadeIn 1s ease-in-out;
    }

    form {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 20px;
      background-color: #f8f8f8;
      border: 1px solid #ddd;
      border-radius: 4px;
  }

  label {
      display: block;
      margin-bottom: 5px;
  }

  .file-label {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.file-label:hover {
    background-color: #45a049;
}

  input[type="file"],
  textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 4px;
  }

  input[type="submit"] {
      padding: 10px 20px;
      background-color: #007BFF;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
  }

  input[type="submit"]:hover {
      background-color: #0056b3;
  }
  #file {
      display: none;
  }

  #social {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 20px;
  }
  
  #social a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 24px; /* Adjust as needed */
  }
  
  #social a:hover {
    color: #4CAF50;
  }

    @media (max-width: 400px) {
        nav ul li a {
        font-size: 16px;
        }
    }

    @keyframes slideIn {
        0% {
          transform: translateY(100%);
        }
        100% {
          transform: translateY(0);
        }
      }
      
      footer {
        animation: slideIn 1s ease-out;
      }

      @media (max-width: 768px) {
        nav ul {
          display: none;
        }
    }

      html {
        scroll-behavior: smooth;
      }

      @keyframes fadeIn {
        0% {
          opacity: 0;
        }
        100% {
          opacity: 1;
        }
      }
      
      .your-element {
        animation: fadeIn 1s ease-in-out;
      }

    
      form {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        background-color: #f8f8f8;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    label {
        display: block;
        margin-bottom: 5px;
    }

    .file-label {
      padding: 10px;
      background-color: #4CAF50;
      color: transparent;
      cursor: pointer;
      border-radius: 5px;
  }
  
  .file-label:hover {
      background-color: #45a049;
  }

    input[type="file"],
    textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    input[type="submit"] {
        padding: 10px 20px;
        background-color: #007BFF;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    input[type="submit"]:hover {
        background-color: #0056b3;
    }

    #file {
        display: none;
    }
