body {
    background-color: #c9d9f8;
    background-image: linear-gradient(to right, white , lightgrey);
}
h1 {
    text-align: center;
    padding: 20px;
}
nav {
    display: flex;
    justify-content: space-evenly;
    margin: 20px auto;
    padding: 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
a {
    color: #333;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}
a:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}


h2, p {
    text-align: center;
}
