@font-face {
    font-family: Mojangles;
    src: url(./fonts/mojangles.otf);
}

@keyframes pulse {
  from { text-shadow: 0 0 5px #fff, 0 0 20px #c2d100; }
  to { text-shadow: 0 0 10px #fff, 0 0 40px #c2d100, 0 0 60px #c2d100; }
}

@keyframes pulse-image {
    from {
        filter: drop-shadow(0 0 5px #c2d100) 
                drop-shadow(0 0 15px #c2d100);
    }
    to {
        filter: drop-shadow(0 0 20px #c2d100) 
                drop-shadow(0 0 40px #c2d100);
    }
}

.center-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px #3498db);
    animation: pulse-image 2s ease-in-out infinite alternate;
}

body {
    background-color: #000000;
    color: #ffffff;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 20px;
}

.img {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 0 10px #c2d100);
    animation: pulse-image 2.5s ease-in-out infinite alternate;
}

.glow-text {
    text-align: center;
    font-family: Mojangles;
    font-size: 38px;
    text-shadow: 
        0 0 5px #fff, 
        0 0 20px #c2d100,
        0 0 20px #c2d100;
    animation: pulse 2.5s ease-in-out infinite alternate;
}

@media (max-width: 600px) {

    .img {
        max-width: 200px;
    }

    .glow-text{
        font-size: 22px;
    }
}
