body {
    background: linear-gradient(to bottom, #3a3f58, #0a0d23);
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    position: relative;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100008;
    display: none;
    pointer-events: auto;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7); 
    color: white;
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.2); 
    border-radius: 20px;
    padding: 40px; 
    text-align: center;
    z-index: 100009;    
    display: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    
}

.cookie-button {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none; 
    padding: 10px 20px;
    margin: 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s;
}

.cookie-button:hover {
    background-color: rgba(0, 0, 0, 0.6); 
        transition: color 0.3s; 
}

    
.cookie-button-small {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    color: black;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s;

}
    .cookie-button-small2 {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    margin-top: 20px;
    padding: 5px 10px;
    border-radius: 20px;
    border: none;
    font-size: 12px;
    text-align: center;
    transition: color 0.3s;

}

.cookie-button-small:hover {
    background-color: transparent;
    color: blue;
    text-decoration: underline;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s;
    
}
    
    .cookie-button-small2:hover {
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    text-align: center;
    transition: color 0.3s;
}



    @keyframes colorChange {
    0% {
        color: rgba(100, 100, 100, 0.8);
    }
    50% {
        color: rgba(255, 255, 255, 0.8);
    }
    100% {
        color: rgba(100, 100, 100, 0.8);
    }
}

h1 {
    color: rgba(100, 100, 100, 0.8);
    text-align: center;
    font-size: 60px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.animate-heading {
    animation: jumpIn 2s ease-in-out, changeColor 3s ease-in-out 1s forwards;
        transition: transform 0.5s ease;

}
    #heading:hover {
    transform: translateY(-20px);

}

@keyframes jumpIn {
    0% {
        transform: translateY(-480%);
    }
    50% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(0%);
    }
    
}

@keyframes changeColor {
    from {
        color: rgba(150, 150, 150, 0.8);
    }
    to {
        color: white;
    }
}

h12 {
    color: lightgrey;
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Style the buttons */
.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Style the button */
.button {
  background-color: rgba(255, 255, 255, 0.0,5);
  color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 15px 30px;
  margin: 10px 0;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-in-out forwards;
    
}
    .button3 {
  background-color: rgba(255, 255, 255, 0.0,5);
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 15px 30px;
  margin: 10px 0;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-in-out forwards;
}

/* Add hover effect to button */
.button:hover {
  background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);

}
    .button3:hover {
  background-color: rgba(255, 255, 255, 0.2);
        color: rgba(180, 255, 255, 1.0);

}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fade-in {
    animation: fadeIn 1s ease-in-out;
}
    @keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.cookie-options {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    z-index: 1000009;  
    display: none;
    display: none;
}

.cookie-options h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.option {
    margin-bottom: 10px;
}

.option input[type="checkbox"] {
    margin-right: 5px;
}

.option label {
    font-size: 16px;
}

.save-button, .more-info-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.save-button:hover, .more-info-button:hover {
    background-color: #0056b3;
}
    
    @keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}


