@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    backdrop-filter: brightness(0.8);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd86b;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.418);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

ul {
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 600px;
}

li {
    margin: 1rem auto;
    background: rgba(255, 255, 255, 0.363);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.2s ease;
}

li:hover {
    transform: scale(1.02);
    background-color: rgba(255, 255, 255, 0.15);
}

a {
    color: #ffda6a;
    text-decoration: none;
    font-weight: 600;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    transition: color 0.3s ease;

}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Custom checkbox style */
input[type="checkbox"] {
    accent-color: #ffd86b;
    transform: scale(1.2);
    cursor: pointer;
}
