* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom, #40e0d0, #20b2aa);
    font-family: "Dancing Script", cursive;
    text-align: center;
}

#header {
    background-color: #008b8b;
    color: white;
    padding: 20px;
}

#header h1 {
    font-size: 40px;
}

#header h3 {
    font-size: 20px;
}

#gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

#gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

#gallery img:hover {
    transform: scale(1.1);
}

.routes {
    list-style-position: inside;
    font-size: 20px;
    margin-top: 10px;
}

.routes li {
    margin: 8px 0;
}

#adres {
    padding: 20px;
}

#adres iframe {
    width: 90%;
    max-width: 600px;
    height: 300px;
    border-radius: 10px;
}

footer {
    background-color: #004d4d;
    color: white;
    padding: 15px;
    margin-top: 20px;
}