html {
    background-color: #000000;
    background-image: url(../img/Sprite-0001.png);
    background-repeat: repeat;
    background-size: 5%;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    font-family: 'Determination Mono(RUS BY LYAJK', monospace;
    animation: backgroundAnimation 160s linear infinite;
}

@font-face {
    font-family: 'Determination Mono(RUS BY LYAJK';
    src:local("Determination Mono(RUS BY LYAJK"), url("determinationmonorusbylyajk.otf") format("opentype");
}

body {
    position: absolute;
    background-image: url(../img/Sprite-0001.png);
    background-repeat: repeat;
    background-size: 5%;
    background-color: #0000009a;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: backgroundAnimation 120s linear infinite;
}

.body {
    background-color: #000000ca;
    border: 5px solid #FFFFFF; 
    margin: 10px;
    padding: 10px;
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60% 100%;
    }
}

@keyframes squash {
    0% {
        scale: 1.0;
    }
    100% {
        scale: 0.5;
    }
}

#Ralsei {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 150px;
    height: auto;
    z-index: 1000;
    image-rendering: pixelated;
}



header {
    padding: 10px;
    border-radius: 10px;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #444444;
    border-radius: 10px;
    transition: all 0.3s ease;
}

main {
    padding: 20px;
}

footer {
    background-color: #00000098;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    text-align: center;
}

button {
    background-color: #444444;
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

input {
    background-color: #444444;
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    margin: 5px 5px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #555555;
    transition: all 0.3s ease;
}

.navigation_div {
    padding: 10px;
    background-color: #4141412f;
    border: 3px solid #767676;
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 25%;
}

.navigation_div:hover {
    border: 3px solid #FFFFFF;
    background-color: #000000AA;
    transition: all 0.3s ease;
}

.navigation_div a {
    color: #FFFFFF;
}

.navigation_div p {
    font-size: small;
}

.navigation_div button {
    opacity: 0;
    
}
