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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #415987, #c77dff);
    color: #222;
    min-height: 100vh;
}

header {
    background-color: white;
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 20px;
    font-weight: 400;
}

.nav-links {
    list-style: none;
    margin-top: 30px;
}

.nav-links li {
    margin: 15px 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    background-color: #7b2cbf;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s ease;
    font-weight: bold;
}

.nav-links a:hover {
    background-color: #5a189a;
    transform: scale(1.05);
}

.navbar {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.navbar a {
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #7b2cbf, #9d4edd);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.navbar a:hover {
    background: linear-gradient(135deg, #5a189a, #7b2cbf);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

#om-meg {
    display: flex;
    justify-content: center;
}