body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #f6d365, #fda085, #fcbba1);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    background: white;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.profile {
    display: flex;
    align-items: center;
}

.profile img {
    border-radius: 50%;
}

.info {
    margin-left: 20px;
}

.gallery {
    margin-top: 20px;
}

.gallery-items img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    margin: 10px;
    cursor: pointer;
}

.contact {
    margin-top: 20px;
}

.contact p {
    margin: 5px 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 600px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}