/* Styles in styles.css */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    overflow: hidden;
  }
  
  .container {
    text-align: center;
  }
  
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    width: 20vw;
    height: auto;
    max-width: 100%;
  }
  
  .coming-soon {
    font-size: 8vw;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2vw;
    animation: slide-in 2s ease-out forwards;
  }
  
  .countdown {
    font-size: 4vw;
    margin-top: 20px;
    animation: fade-in 2s ease-out forwards 2s;
  }
  
  .contact {
    font-size: 2vw;
    margin-top: 20px;
    animation: fade-in 2s ease-out forwards 3s;
  }
  
  @keyframes slide-in {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
  }
  
  a:hover {
    color: gray;
  }