body {
    margin: 0;
    font-family: 'Calibri', sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #f4f4f4;
}

#container {
    width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid gray;
    background-color: white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.title {
    width: 100%;
    background-color: #1e88e5;
    text-align: center;
    padding: 15px 0;
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 2px solid gray;
}

header img {
    border: 2px solid black;
    border-radius: 50%;
    margin-right: 20px;
}

p,
li {
    font-size: 18px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

th,
td {
    border: 1px solid black;
    padding: 12px;
    text-align: center;
}

th {
    background-color: #ccc;
}

blockquote {
    background: #e5f1fc;
    border-left: 5px solid #1e88e5;
    padding: 10px;
    font-style: italic;
}

#Projects a {
    font-weight: bold;
    color: #1e88e5;
    text-decoration: none;
    transition: color 0.3s;
}

#Projects a:hover {
    color: #d35400;
    text-decoration: underline;
}

/* Contact links styling */

.contact-links {
    font-size: 18px;
    margin-top: 5px;
}

.contact-links a:hover {
    color: #000;
    text-decoration: none;
}

.contact-links a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
}