* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    color: white;
    font-family: Arial, sans-serif;
    background-color: black;
    margin: 0;
}

header {
    background-color: #000;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px;
    align-items: center;
    width: 100%;
}

.logo {
    height: 120px;
    border-radius: 50%;
}

.instagram,
.whatsapp {
    height: 50px;
    width: 50px;
    margin: 0 20px;
}

.caixa-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: black;
    overflow: hidden;
}

video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.mascara {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(312deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.454) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 0;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    gap: 50px;
    margin-bottom: 100px;
    z-index: 1;
}

.main-photo {
    padding: 0;
}

.main-photo:hover {
    border-radius: 50%;
    box-shadow: 0px 0px 15px 15px #f1f1f0;
    transition: box-shadow 0.8s ease-in-out;
}

.selfie {
    width: 300px;
    border-radius: 30%;
    transition: border-radius 0.8s ease-in-out;
}

.name {
    max-width: 100%;
    font-size: 10vw;
    text-align: center;
}

.desc {
    max-width: 90%;
    font-size: 4vw;
    margin-top: 30px;
    text-align: center;
}

.bio {
    text-align: center;
    max-width: 90%;
}

.pic-ctn {
    width: 100%;
    height: 400px;
    position: relative;
    margin-bottom: 100px;
    overflow: hidden;
}

@keyframes display {

    0%,
    30%,
    100% {
        transform: translateX(200px);
        opacity: 0;
    }

    10%,
    20% {
        transform: translateX(0);
        opacity: 1;
    }
}

.pic-ctn>img {
    position: absolute;
    height: 100%;
    top: 0;
    left: calc(50% - 100px);
    opacity: 0;
    animation: display 10s infinite;
}

.pic-ctn>img:nth-child(2) {
    animation-delay: 2s;
}

.pic-ctn>img:nth-child(3) {
    animation-delay: 4s;
}

.pic-ctn>img:nth-child(4) {
    animation-delay: 6s;
}

.pic-ctn>img:nth-child(5) {
    animation-delay: 8s;
}

footer {
    background-color: #070707;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.carrousel {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.qrcode {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.qrcode img {
    width: 100%;
    max-width: 250px;
    margin: 30px auto;
    border-radius: 10px;
}

.qrcode p {
    font-size: 4vw;
}

.instagram-preview {
    width: 90%;
    margin: 50px auto;
    text-align: center;
    z-index: 1;
}

.instagram-preview h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.instagram-media {
    max-width: 100%;
    margin: 0 auto;
}

.location {
    width: 90%;
    margin: 50px auto;
    text-align: center;
    z-index: 1;
}

.location h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.location iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border: 0;
}