body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("../images/background.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
  }

  .container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .logo-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo-section img {
    max-width: 100%;
    height: auto;
    animation-duration: 3s;
    animation-name: slidein;
  }

  .action-section {
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background: #ffffff60;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 400px;
  }
  
  .action-section button {
    padding: 15px 30px;
    font-size: 22px;
    color: #000000;
    background: #c2b59b;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }

  .action-section button:hover {
    background:  #f1b53d;
  }

  .action-section .links {
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
  }

  .action-section .links a {
    color: #000000;
    font-size: 20px;
    text-decoration: none;
    margin: 0 5px;
  }

  .action-section .links a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }

    .logo-section {
      flex: 1;
    }
  }

  @keyframes slidein {
    from {
      margin-left: 100%;
      width: 300%;
    }
    to {
      margin-left: 0%;
      width: 100%;
    }
  }