/* Page background */
body {
    font-family: Garamond;
    text-align: center;
    background-image: url("images/homepageairplane.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
}
/* Shared text box style */
h1, h2, p {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5); /* soft transparent box */
    padding: 12px 20px;
    border-radius: 12px;
    margin: 10px auto;
}
/* Title */
h1 {
    color: lightgreen;
    font-size: 42px; /* bigger */
}
/* Second header */
h2 {
    color: blue;
    font-size: 28px; /* bigger */
}
/* Paragraph text */
p {
    color: lightblue;
    font-size: 18px; /* bigger */
}
/* Places container */
.places {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}
/* Images */
img {
    width: 170px;
    height: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 3px solid white;
}
/* Links */
a {
    text-decoration: none;
    color: white;
}
/* Hover effect */
a:hover img {
    transform: scale(1.5);
}
    


