body {
    background-color: #8FA1B3;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    background-color: #C2C7E0;
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
}
.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.profile h1 {
    font-size: 2em;
    margin: 0;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.gallery-item {
    width: 300px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.gallery-item img {
    width: 100%;
    border-radius: 10px;
}
.gallery-item p {
    font-style: italic;
    margin-top: 10px;
}
.contact-btn {
    background-color: #9EC9FF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 20px;
}
footer {
    margin-top: 20px;
    font-size: 0.9em;
}

/* Email Me */

.blue-button {
    display: inline-block;
    background-color: #007BFF; 
    color: white;
    padding: 12px 24px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 10px;
}

.blue-button:hover {
    background-color: #0056b3; 
}
