/* styles.css */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

h1 {
    color: darkturquoise;
    font-size: 4rem;
}

h2 {
    color: sienna;
}

.variabel {
    color:greenyellow;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-decoration: overline;
    transform: skew(10deg, 10deg);
    
}

#loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
}

#loader {
    width: 400px;
    max-width: 80%;
    height: 20px;
    background-color: rgb(0, 255, 136);
}

#loading-bar {
    width: 0;
    height: 100%;
    background-color: #f00;
    animation: load 5s ease;
}

@keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
}

#main-content {
    display: none;
    text-align: center;
    padding: 20px;
}

#logo img {
    animation: spin 2s linear infinite;
    max-width: 76%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#shop {
    margin-top: 20px;
}

.product {
    display: inline-block;
    padding: 15px;
    background-color: #333;
    border: 2px solid sienna;
    border-radius: 10px;
    margin: 10px;
}

.product img {
    max-width: 200px;
    height: auto;
}

#confetti {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-image: url('confetti.gif');
    animation: confetti-fall 5s ease-out;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}