body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("../bilder/aik_wallpaper_windows_7_by_antonnaslund_d5y82gl-fullview.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.header {
    background-color: rgba(0, 0, 0, 0.9);
}

.menu {
    text-align: center;
    padding: 10px 0;
}

.menu a {
    color: rgb(255, 238, 0);
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: white;
}

.Välkommen {
    text-align: center;
    color: rgb(255, 238, 0);
    padding: 20px 0;
    margin: 0;
}

.kontakt-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: rgba(0,0,0,0.85);
    padding: 30px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.kontakt-container h2 {
    text-align: center;
    color: rgb(255, 238, 0);
}

.kontakt-container input,
.kontakt-container textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    outline: none;
}

.kontakt-container textarea {
    resize: none;
    height: 120px;
}

.kontakt-container button {
    width: 100%;
    padding: 12px;
    background-color: rgb(255, 238, 0);
    color: black;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.kontakt-container button:hover {
    background-color: white;
}