* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: Arial, sans-serif; 
}

.bold-text{
    font-weight: bold;
}

#hero {
    height: 100dvh;
    background-image: url('../media/image.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

#hero-content h1 { 
    font-size: 2.5rem; 
    margin-bottom: 0.5rem; 
}

#hero-content h1,
#hero-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s ease-in-out forwards ;
}

#hero-content p { 
    font-size: 1.2rem; 
    animation-delay: 0.4s ;
}

@keyframes fadeIn {
    from {
        opacity:0;
        transform: translateY(20px);
    }
    to {
        opacity:1;
        transform: translateY(0);
    }
}

#consent-dialog,
#settings-dialog {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.2);
}

#consent-box,
#settings-box {
    background: #0b1220;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
}

#consent-box h2,
#settings-box h2{
    margin-bottom: 12px;
}

#consent-buttons,
#settings-buttons { 
    margin-top: 15px; 
}

#consent-buttons button,
#settings-buttons button {
    margin: 5px;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
}

#accept-btn, #save-settings-btn, #decline-btn { 
    background: #06b6d4; 
    border: none; 
    color: #04282a; 
}

#settings-btn, #close-settings-btn { 
    background: transparent; 
    border: 1px solid #ffffff; 
    color: #ffffff; 
}

#settings-box label {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    padding: 5px 10px;
}

#settings-box input[type="checkbox"] {
    width: 20px;
    height: 18px;
}
