body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #151823;
    color: #fff;
    overflow-x: hidden;
}

/* Footer */
.site-footer {
    background: #1C202E;
    color: #FFFFFF99;
    text-align: center;
    padding: 30px 20px;
    font-size: 18px;
    line-height: 1.6;
}

.site-footer p {
    margin: 20px 0;
}

.footer-links {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    text-decoration: underline;
}

.name-logo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 0 0 0;
}

.name-logo-footer h1 {
    color: rgb(255, 255, 255);
    font-size: 24px;
}

.name-logo-footer img {
    width: 50px;
    height: 50px;
}

.site-footer a {
    color: #ffffff;
}

.site-footer a:hover {
    color: #00bfff;
}

@media (max-width: 480px) {
    .footer-links {
        gap: 15px;
    }
}