body {
    background-color: black;
    color: white;
}
.fade-in {
    display: none;
    color: white;
}


@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.shake {
    display: inline-block;
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

/* Game title */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 25px #ffa500;
    }
    50% {
        text-shadow: 0 0 10px #ffa500, 0 0 20px #ffa500, 0 0 30px #ffa500, 0 0 40px #ffa500;
    }
}

.star-wars-text {
    animation: glow 3s ease-in-out infinite alternate;
    color: #ffe81f;
    font-family: "Arial Black", Gadget, sans-serif;
}

.title {
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: wider;
}

.welcome {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.battlememe {
    font-size: 4rem;
}

@media (max-width: 640px) {
    .star-wars-text {
        animation: none;
        text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500;
    }
}

@media (min-width: 640px) {
    .welcome { font-size: 3rem; }
    .battlememe { font-size: 5rem; }
}

@media (min-width: 768px) {
    .welcome { font-size: 5rem; }
    .battlememe { font-size: 7rem; }
}

@media (min-width: 1024px) {
    .welcome { font-size: 7rem; }
    .battlememe { font-size: 9rem; }
}