* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden; 
    margin: 0;
}

video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url('../images/bgimage.png');

    height: 100%;
    object-fit: cover;
    filter: blur(4px);
    z-index: -1;
}

.indicator {
    background: linear-gradient(90deg, #151401 0%, #d7c457 100%);
    height: 10px;
    border-radius: 10px; 
    width: 20px;
    position: fixed;
    top: 0;
    z-index: 1;
}

.text span:hover {
    transform: scale(1.1);
}

.text {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: space-around;
}

.photocard {
    position: relative;
    perspective: 1000px;
    width: 200px; 
    height: 300px; 
    margin-bottom: 20px; 
}

.front-image,
.back-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transition: transform 0.5s ease;
    border-radius: 10px; 
}

.text span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back-image {
    transform: rotateY(180deg);
}

.photocard:hover .front-image {
    transform: rotateY(180deg);
}

.photocard:hover .back-image {
    transform: rotateY(0deg);
}
