html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #782828;
    color: #ffffff;
}

ul {
    list-style-type: none;
}

.main-wrapper {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header {
    display: flex;
    width: 100%;
    height: 100px;
}

.nav__wrapper {
    display: flex;
    justify-content: left;
    height: 100px;
}

.nav__logo-image {
    height: 100%;
}

.header__logo {
    display: flex;
    height: 100%;
}

.nav {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.nav__menu {
    background: #000000;
    display: flex;
    width: 100%;
    height: 100%;
    color: aqua;
}


.nav-button {
    display: flex;
    font-family: monospace;
    width: 100%;
    background: none;
    color: orange;
    border: none;
    font-size: 25px;
    justify-content: space-evenly;
    align-items: center;
}

.nav-button:hover {
    background-color: orange;
    color: black;
}

.nav-button.active {
    color: #e61414;
}

.logo__wrapper {
    display: flex;
    justify-content: right;
    height: 100%;
    right: 0;
}

.logo__wrapper:hover {
    opacity: 0.9;
}

img.logo {
    width: 100px;
}

.ascii {
    font-family: monospace;
    font-size: small;
    color: #000000;
}

aside {
    font-size: 20px;
}

@media screen and (max-device-width: 600px) {
    aside {
        font-size: 40px;
        color: aqua;
    }
}

@media screen and (max-width: 700px) {
    .li_top {
        gap: 30px;
    }
}

@media screen and (max-width: 1200px) {
    pre {
        display: none;
    }
}

.footer {
    width: 100%;
    bottom: 0;
    position: fixed;
    background-color: #603030;
}

.footer-wrapper {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.footer__contacts {
    display: flex;
}

.footer__links {
    display: flex;
    align-items: center;
}

.footer__link {
    margin: 0 10px;
    color: black;
}

.footer__link-name {
    text-decoration: underline;
    cursor: pointer;
    color: orange;
}

.footer__load-time {
    display: flex;
    align-items: center;
}

.load-time {
    color: white;
    border: 2px solid orange;
    padding: 5px;
    height: 1rem;
}

.default-button {
    color: black;
    background-color: orange;
    padding: 3px 10px;
    width: 150px;
    border-radius: 1px;
    cursor: pointer;

    &:hover {
        background-color: #ad2323;
    }
}

.main__test-link {
    font-size: 30px;
    color: white;
}

.spoiler {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spoiler__image {
    border: 10px dashed white;
    width: 80%;
    outline: 5px inset green;
    border-radius: 5px;

}