.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(242, 231, 194);
    }


.button-container {
    display: flex; /* Enable Flexbox */
    flex-direction: column; /* Stack buttons vertically */
    justify-content: center; /* Center the stack vertically */
    align-items: center; /* Center buttons horizontally */
    height: 40vh; /* Full height of the viewport */
    gap: 20px; /* Space between the buttons */
  }
  
  /* Button styling */
  .button {
    padding: 10px 20px; /* Add internal spacing */
    font-size: 16px; /* Font size */
    color: white; /* Text color */
    background-color: #beb22c; /* Button background color */
    border: none; /* Remove border */
    border-radius: 15px; /* Rounded corners */
    text-align: center; /* Ensure text is centered */
    cursor: pointer; /* Change cursor on hover */
    transition: background-color 0.3s ease; /* Add hover transition */
  }
  
  .button:hover {
    background-color: #928923; /* Darker blue on hover */
    color: white;
  }
  #cookie-banner {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
  }
  #cookie-banner button {
    font-size: 14px;
    border-radius: 4px;
  }