body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

header {
    background-color: rgb(247, 245, 245);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header h1 {
    font-size: 36px; 
    font-family: 'Roboto', sans-serif; 
    color: #333; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
    margin: 10px 0; 
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 24px;
    transition: color 0.2s;
}

nav a:hover {
    color: orange;
    font-size: 24px;
}

.images {
    height: 60vh;
    background-color: black;
    margin: 30px auto 60px;
    overflow: hidden;
}

.images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about {
    text-align: center;
    width: 80vw;
    margin: 0 auto;
    margin-bottom: 10px;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333; 
}

.about p {
    font-size: 22px;
}

.offers {
    text-align: center;
    width: 80vw;
    margin: 0 auto;
    margin-bottom: 20px;
}

.offers h2 {
    font-size: 34px;
    letter-spacing: 1px;
    color: #333; 
}

.offers p {
    font-size: 22px;
}


button {
    display: block;
    margin: 0 auto;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: silver;
    border: 5px black solid;
    transition: 0.2s;
}

button:hover {
    background-color: orange;
}

button a {
    text-transform: none;
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: font-size 0.2s;
}

button a:hover {
    font-size: 20px;
}

.contact {
    text-align: center;
    width: 80vw;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
}

.contact-item {
    flex: 1;
}
.contact h2 {
    font-size: 28px;
    color: #333; 
}
.contact p {
    font-size: 20px;
}

iframe {
    width: 100%;
    height: 400px;
}

footer {
    height: 30px;
    margin-top: 20px;
    text-align: center;
}
