@import url('fonts.css');

*{
    user-select: none;
}

body {
    background-color: #242426;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

h1, p, img, body {
    margin: 0;
    padding: 0;
}

h1.mainTitle {
    color: #52FFE2;
    font-family: 'Pixeled'; 
    text-align: center;
    font-size: 40px;
    text-shadow: 0 0 3px #52FFE2, 0 0 6px #52FFE2;
}

p.subTitle {
    color: #26FF91;
    font-family: 'Minecraft';
    text-align: center;
    font-size: 20px;
}

img {
    animation: computer_anim 2.5s ease infinite;
}

footer{
    position: absolute;
    bottom: 0;
    color: #52FFE2;
    font-family: 'Minecraft';
    font-size: 15px;
    text-align: center;
    margin: 0;
    padding: 0;

}

@keyframes computer_anim {
    0% { transform: translateY(0); }
    50% { 
        transform: translateY(-15px);
        filter : drop-shadow(0 0 8px #52FFE2);
        
    }
    100% { transform: translateY(0); }
}

@media (max-width: 400px) {
    h1.mainTitle {
        font-size: 20px;
    }
    p.subTitle {
        font-size: 15px;
    }
}