/* General Styling */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background-color: #F8F8F8;
    color: #333333;
    margin: 0;
    padding: 0;
}

h1 {
    color: #1A535C;
    text-align: center;
}

h2 {
    color: #4ECDC4;
}

/* Photo Styling */
img {
    width: 150px;
    height: 150px;
    border: 3px solid #4ECDC4;
    border-radius: 50%;
    padding: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content Container */
#main-content {
    width: 800px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #DDDDDD;
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Introduction Paragraph */
.introduction {
    text-align: justify;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #F2F2F2;
}

/* Favorite Places Section */
.section-block {
    display: block;
    margin-bottom: 30px;
}

.section-block ol {
    text-align: left;
}

/* Contact Info */
.contact-item {
    display: inline-block;
    width: 200px;
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #AAD8D3;
    text-align: center;
    background-color: #E6F7F5;
}

/* Hover Effects for Links */
a:hover {
    background-color: #1A535C;
    color: #FFFFFF;
    text-decoration: none;
}

/* Pseudo-elements */
.introduction::first-letter {
    font-size: 1.8em;
    font-weight: bold;
}

/* Flexbox Section */
#box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 600px;
    width: 100%;
    margin-top: 50px;
}

.box {
    width: 100px;
    height: 100px;
    border-top: 1px solid #687291;
    text-align: center;
    font-family: Tahoma, sans-serif;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box:nth-child(odd) {
    background-color: #dfe1e7;
}

.box:nth-child(even) {
    background-color: #eeeff2;
}

.box:last-child {
    background-color: #687291;
    border: 4px solid black;
}
