/* Підключення шрифтів уже в HTML */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background: url('https://images.unsplash.com/photo-1603302576831-7c9c58ebbf89') no-repeat center center fixed;
    background-size: cover;
    color: white;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.726);
    padding: 20px;
  }
  
  .card {
    background-color: rgba(220, 38, 38, 0.9); /* червоне напівпрозоре */
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }
  
  .card h1 {
    font-family: 'Lobster', cursive;
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Lobster', cursive;
  }
  
  .card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    background-color: white;
    color: #dc2626;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #ffffff;
    transform: scale(1.05);
  }
  
  .btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  