body {
    font-family: Arial Narrow, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    color: black;
    background-image: url('bilder/beach.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    background-repeat: no-repeat;
}
header {
    background-color: darkblue;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header ul li a:hover {
    color: lightgreen;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.7em;
}

nav ul li.title {
    margin-right: auto;
    color: white;
    font-size: 2em;
    font-weight: bold;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.welcome h1 {
    margin: 0;
    color: rgb(255, 255, 255);
    font-size: 2em;
}

.welcome h2 {
    margin: 20px 0;
    color: rgb(255, 255, 255);
    font-size: 2em;
}

.order-now {
    background-color: green;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.7em;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
}

.order-now:hover {
    background-color: darkgreen;
}

.home-button {
    text-decoration: none;
    color: white;
    background-color: darkblue;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2em;
    display: inline-block;
    margin: o auto;
    text-align: center;
}

.logo {
    position: absolute;
    top: 100px;
    left: 10px;
    width: 100px;
    height: auto;
    z-index: 1000;
}

.home-button:hover {
    background-color: #0056b3;
    color: #fff;
}

button, .buy-button, .home-button {
    background-color: darkblue;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover, .buy-button:hover, .home-button:hover {
    background-color: green;
    color: white;
}

@media (max-width: 768px) {
    header ul li.title {
        margin: 0 auto;
        text-align: center;
    }
}

