ul{
    list-style-type: none;
}
html {
  scroll-behavior: smooth;
}
body{
    margin: 0px;
    padding-bottom: 30px;
    width: 100%;
    min-height: 100vh;
    background-image: url("images/bgc.png");
    background-size: 100%;     
}




.main-container{
    min-height: 80vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}
.container {
      text-align: center;
      max-width: 600px;
      padding: 2rem;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #ff4d4d;
    }

    p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: #ccc;
    }

    .start-button {
      padding: 0.75rem 2rem;
      font-size: 1.1rem;
      font-weight: bold;
      color: #fff;
      background-color: #ff0000;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .start-button:hover {
      background-color: #cc0000;
    }