body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

header {
    background-color: #ff69b4;
    color: white;
    padding: 20px;
    text-align: center;
}

#headertext {
    color: #f0f8ff;
}

main {
    padding: 20px;
}

.pink {
    color: #ff69b4;
}

.introduction {
    text-align: center;
    padding: 50px;
    background-color: #fff0f5;
}

.introduction button {
    padding: 10px 20px;
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.introduction button:hover {
    background-color: #ff1493;
}

.content {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff0f5;
    border-radius: 10px;
    animation: fadeIn 2s;
}

.photo {
    text-align: center;
    margin-top: 20px;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery img {
    max-width: 30%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.music {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}

.music audio {
    padding: 10px 20px;
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.music audio:hover {
    background-color: #ff1493;
}


.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 16px 0 6px;
    font-size: 0.875rem;
}

.copyright-link,
.author {
    display: inline-block;
    margin-right: 10px;
}