
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Trebuchet MS", Arial, sans-serif;
    background: url("../imgs/old_map.png");
    color: #333;
}


#page {
    width: 1000px;
    margin: 40px auto;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
}


header {
    background-color: #2b2b2b;
    color: white;
    padding: 20px;
}

header h1 {
    font-size: 28px;
}


nav {
     background-image: url("../imgs/red015.jpg");
    background-repeat: repeat-x;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 10px 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}


section {
    display: flex;
    justify-content: space-around;
    padding: 30px;
}


article {
    width: 280px;
    background-color: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


article img {
    width: 100px;
    margin-bottom: 10px;
}


article h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #7a0c0c;
}


article p {
    font-size: 14px;
    text-align: justify;
}

footer {
    background-color: #2b2b2b;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 12px;
}
