body {
    font-family: 'Calbiri', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg, #590D22, #800F2F, #A4133C, #C9184A, #FF4D6D, #FF758F);
    background-size: 400% 400%;
    animation: gradientAnimation 15s infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-section {
    text-align: center;
}

#profilePhoto {
   
    width: 260px;
    height: 150px;
    margin-bottom: 10px;
}

#getMessageButton {
    padding: 10px;
    background-color: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
}

#getMessageButton:hover {
    background-color: #2980b9;
}

#messageOutput {
    margin-top: 10px;
    font-weight: bold;
}

.profile-section, .work-section, .life-section,
.interests-section, .hello-section {
    max-width: 600px;
    margin-top: 20px;
}

h2 {
    color: white;
}

p {
    line-height: 1.5;
    color: white;
}