body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1117;
    color: #ffffff;
    text-align: center;
    overflow-x: hidden;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff6f61;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.back-btn:hover {
    background-color: #e05b4a;
}


h1 {
    margin: 20px 0;
    color: #1f8ef1;
    font-size: 2.5rem;
}

.message {
    margin: 0 20px 20px 20px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #d1d5db;
}

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

.gallery-item {
    width: 220px;
    text-align: center;
    background-color: #161b22;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover,
.gallery-item video:hover {
    transform: scale(1.1); /* Zoom ao passar o mouse */
}

footer span {
    font-family: 'Dancing Script', cursive;
    font-size: 22pt;
    font-weight: 800;
}

footer a {
    color: #FF69B4;
}

footer a:hover {
    color: #FF1493;
}
