body {
    margin: o;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    color: rgb(250, 250, 250);
    position: relative;
}

/* Background overlay */
 .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/City_map.webp);
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* low opacity */
    z-index: -1; /* behind all content*/

}

/* Main container */
.container {
    background-color: rgba(160 , 0, 0, 0.35) ;
    margin: 40px auto;
    padding: 20px 30px;
    border: 2px solid #a00000;
    max-width: 1100px;
}

/* Title */
h1 {
    color: ff4040;
    font-size: 2em;
    margin-bottom: 0;
}

h2 {
    margin-top: 5px;
    font-size: 1.3em;
    color:#ff9090;
    border-bottom: 1px solide #ff4040;
}

h3 {
    color: #ff9090;
    margin-top: 20px;
}

/* Layout for image and text */
.info-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.text-selection {
    flex: 2;
}

.text-selection p {
    line-height: 1.6;
    font-size: 0.95em;
}

.text-selection ul {
    margin-top: 10px;
    padding-left: 20px;
}
.text-selection li {
    margin-bottom: 6px;
}

/* Icon */
.image-icon {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 2px solid #ff4040;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.4);
}

.image-selection {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    top: -20px;
}

/* Portrait */
.image-selection {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-selection img {
    width: 260px;
    border: 2px solid #ff4040;
    border-radius: 4px;
    background-color: rgba (0 , 0, 0 , 0);
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
    .info-layout {
        flex-direction: column;
        align-items: center;
    }

    .image-selection img {
        width: 200px;
        margin-top: 20px;
    }
}