
        /* General Styling */
        body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    background: url(/cloud.png) no-repeat top center fixed #e7e7e7; 
}

        /* Container */
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            width: 100%;
            max-width: 600px;
        }

/* Header Section */
.header {
    display: flex;
    flex-direction: row; /* Stacks items vertically */
    align-items: center; /* Centers everything */
    gap: 10px;
    text-align: center;
}

.header img {
    height: 60px;
    width: auto;
}

        .title {
            text-align: center;
            font-size: 18px;
            color: #333;
    padding: 0 15px;
        }

        /* Airport Box Container */
        .box-container {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* Airport Boxes */
        .airport-box {
            width: 200px;
            height: 200px;
            background: #3498db; /* Same color for both */
            color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
            text-decoration: none;
            padding: 15px;
            text-align: center;
        }

        /* Airport Logos Inside Boxes */
        .airport-box img {
            width: 80px; /* Adjust the logo size */
            height: auto;
            margin-bottom: 10px;
        }

        /* Hover Effect */
        .airport-box:hover {
            background-color: #2980b9; /* Slightly darker shade */
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .box-container {
                flex-direction: column;
            }
        }
        
        
        p,h3{
    margin: 0;
}