
body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    /* kuldne radiaalne gradient kogu taustal */
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    background: rgba(51, 51, 51, 0.8); /* poolläbipaistev tume menüü */
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #FFD700;
    margin: 0 0 10px 0;
}

nav a {
    margin: 0 15px;
    color: #C0C0C0;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    padding: 40px 20px;
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    font-size: 18px;
}