body {
    font-family: 'Times New Roman', Times, serif;
    background-image: url('images/singapore.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: large;
}

header {
    background: rgba(0, 119, 182, 0.8);
    color: white;
    padding: 20px 0;
    text-align: center;
}

main {
    padding: 30px;
    max-width: 900px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1, h2 {
    color: #023e8a;
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 15px;
    background: rgba(0, 119, 182, 0.8);
    color: white;
    margin-top: 30px;
}


