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

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    color:  #0d1117;
}

.banner .content .title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3rem, 10vw, 20rem);
    margin: 0;
    padding: 0;
}

.banner .content p {
    font-size: 3em;
}

.back {
    display: flex;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 10px;
    top: 0;
    left: 0;
    filter: blur(10px);
    z-index: -1;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(imagens/foto4.jpeg);
    background-size: cover;
    background-position: 0 -40em;
    z-index: -2;

    mask-image: url(imagens/Ink_lv2.gif);
    mask-size: cover;
    mask-position: center;
}

.banner .field {
	display: flex;
    position: absolute;
	align-items: center;
	justify-content: space-around;
	width: 100px;
    right: 0;
    top: 50%;
}

.banner .field .mouse {
	width: 30px;
	height: 60px;
	border: 3px solid #333;
	border-radius: 60px;
	position: relative;
}

.banner .field .mouse::before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

.hero {
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    color: white;
    padding: 50px 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin: 0;
}
.hero p {
    font-size: 1.2rem;
}

.hero {
    animation: scale-up 0.5s ease-in-out;
}

@keyframes scale-up {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

.message {
    padding: 20px;
    font-size: 1.2rem;
    color: #fff;
}

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

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

.gallery-item {
    width: 200px;
    text-align: center;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.caption {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #fff;
    font-style: italic;
}

.redirect-button {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}

.redirect-button p {
    font-size: 1.2em;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 10px;
}

.btn {
    background-color: #FF69B4;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2em;
    font-family: 'Dancing Script', cursive;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #FF1493; 
    transform: scale(1.1);
}

footer {
    margin-top: 40px;
    font-size: 1.1em;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

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

footer a {
    color: #FF69B4;
}

footer a:hover {
    color: #FF1493;
}

@media (max-width: 768px) {
    .banner .content .title {
        font-size: 6em;
    }

    .banner .content p {
        font-size: 1em;
    }

    .banner::before {
        background-position: center;

    }

    .banner .field {
        bottom: -150px;
        left: 0;
        transform: translateX(100%);
    }

    .gallery-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .banner .field {
        transform: translateX(350%);
    }
}

@media (max-width: 425px) {
    .banner .field {
        transform: translateX(165%);
    }
}

@media (max-width: 375px) {
    .banner .field {
        transform: translateX(140%);
    }
}

@media (max-width: 320px) {
    .banner .field {
        transform: translateX(110%);
    }
}
