/* styles.css */
/* MoneyVibes Meditation */
/* Created by Ivan Piskliukov */
/* 2024-07-04 */

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

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background-color: #000;
}

.container {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    text-align: center;
    color: white;
    font-family: 'Mr Dafoe', cursive;
    font-size: 6rem;
    font-weight: 400;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    z-index: 100;
    padding: 0 20px;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 2s ease-in-out;
    will-change: opacity, transform;
}

.current {
    z-index: 2;
}

.next {
    z-index: 1;
}

.zoom-effect {
    animation: zoom 30s ease-in-out infinite;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.blur-effect {
    animation: blur-text 30s ease-in-out forwards;
}

@keyframes blur-text {
    0%, 100% {
        filter: blur(0px);
        opacity: 0.9;
    }
    50% {
        filter: blur(8px);
        opacity: 0.8;
    }
    75% {
        filter: blur(8px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3.75rem;
        width: 95%;
        top: 50%;
    }
} 