﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #FF69B4;
}

header {
    background-color: #FF69B4;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer {
    background-color: #f1f1f1;
    color: #333;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #ccc;
}

main {
    padding: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: .5rem;
    color: pink;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color: pink;
}

button {
    display: inline-block;
    background-color: #FF69B4;
    color: white;
    padding: .5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

    .image-gallery img {
        max-width: 100%;
        height: auto;
        flex: 1 1 calc(50% - 1rem);
    }

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.spinner {
    display: none;
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    .spinner::before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.7);
    }

    .spinner::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1em;
        height: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
        border-radius: 50%;
        border: 0.2em solid #FF69B4;
        border-top-color: transparent;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
