<style>
    * {
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background: linear-gradient(rgba(180,0,0,0.85), rgba(180,0,0,0.85)),
                  url('images/background.png') center/cover no-repeat;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .container {
      width: 90%;
      max-width: 1100px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .left {
      text-align: center;
    }

    .logo {
      width: 500px;
      max-width: 80%;
      margin-bottom: 20px;
    }

    .title {
      font-size: 1.4rem;
      font-weight: bold;
      line-height: 1.4;
    }

    .title span {
      display: block;
      margin-top: 8px;
      font-size: 1.8rem;
    }

    .right {
      background: rgba(255, 0, 0, 0.35);
      padding: 30px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .menu-btn {
      padding: 14px 18px;
      border: 1px solid rgba(255,255,255,0.7);
      border-radius: 6px;
      text-align: center;
      text-decoration: none;
	  font-weight: bold;
      color: #fff;
      font-size: 1rem;
      transition: background 0.3s, transform 0.2s;
    }

    .menu-btn:hover {
      background: rgba(255,255,255,0.15);
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .container {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }
	
  </style>