body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.photo {
    width: 150px;
    height: 150px;
    background-size: cover;
    border: 2px solid #fff;
    animation: bounce 5s infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.form-container img {
    display: block;
    margin: 0 auto 20px;
    width: 100px;
    height: auto;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    color: #555;
}

p {
    margin-bottom: 20px;
    color: #555;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Mídia queries para dispositivos móveis */
@media only screen and (max-width: 600px) {
    .photo {
        width: 100px;
        height: 100px;
    }

    .form-container {
        padding: 20px;
        max-width: 80%;
    }
}
