body {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    background-color: #0b132b; 
    color: #ffffff;           
    margin: 0;
    padding: 0;
    text-align: center;
}

header,
footer {
    background-color: #1c2541; 
    color: white;           
    padding: 1rem;
}

main {
    background-color: #0f172a; 
    color: #e2e8f0;          
    padding: 1rem;
}

h1 {
    transition: color 0.3s ease;
}

h1:hover {
    color: #ffd700;     
    /* Hover-effekt */
}

h2 {
    font-weight: bold;
    color: #00b4d8;          
}

img {
    margin-top: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    max-width: 90%;
    height: auto;
}

img:hover {
    transform: scale(1.1);
}

div ul {
    display: inline-block;
    text-align: left;
    padding-left: 20px;
    margin: 0 auto;
}

.link-home {
    color: #00b4d8;       
    font-size: 20px;
    font-weight: bold;
}

a {
    color: #90e0ef;           
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

a:hover {
    color: #ffd700;           
    transform: translateY(-5px);
    text-decoration: none;
}