body {
    background: #000;
}

body {
    background-color: black;
    color: white;
    font-family: "JetBrains Mono", sans-serif;
    font-size: 13px;
}

.tab {
    background-color: #262626;
    width: 1500px;
    max-width: 90%;
    margin: auto;
    border-radius: 10px;
}

.header {
    background-color: #383838;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 2px solid black;
    padding-bottom: 5px;
}

.logo {
    text-align: center;
}

.logo a {
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo img {
    border-radius: 50%;
    width: 100px;
}

.logo a h1 {
    display: inline;
    margin-left: 20px;
    padding-top: 5px;
}

.header-left {
    float: left;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 32px;
}

#menu {
    border-radius: 10px;
    position: fixed;
    height: 100%;
    width: 0;
    z-index: 1;
    text-align: left;
    background-color: black;
    overflow-x: hidden;
    transition: 0.5s;
}

#menu a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
}

#menu a:hover {
    color: #888;
}

.main {
    margin: 5%;
}

.sectiona {
    text-decoration: none;
    color: white;
    width: 100%;
    height: 100%;
    display: inline;
}

.sectionhome {
    text-align: center;
    background-color: #383838;
    border-radius: 10px;
    transition: 0.3s;
}

.sectionhome:hover {
    background-color: #474747;
}

.sectionimg {
    padding-top: 10%;
    width: 100%;
}

.sectionimg img {
    border-radius: 10px;
    width: 50%;
    aspect-ratio: 1;
}

.sectionp {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 5%;
    padding-bottom: 10%;
    padding-left: 25%;
    width: 50%;
}

#console-control {
    min-height: 390px;
}

#console {
    float: left;
    background-color: #111;
    width: 40%;
    padding: 2%;
    height: 340px;
    overflow: hidden;
    align-content: baseline;
    border-radius: 10px;
}

#control div {
    text-wrap: wrap;
    margin-left: 55%;
}

#control button {
    min-height: 25px;
    min-width: 50px;
    color: white;
    background-color: #444;
    border-radius: 10px;
    border-color: black;
}

#control button:hover {
    background-color: #555;
}

#control button:active {
    background-color: #666;
}

.shopitem {
    background-color: #383838;
    border-radius: 10px;
    transition: 0.3s;
    margin-top: 50px;
    margin-left: 10px;
    width: 45%;
}

.shopitem:hover {
    background-color: #474747;
}

.shopimg {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    width: 30%;
}

.shopp {
    text-align: center;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    float: right;
    padding-top: 20%;
    width: 70%;
    text-decoration: none;
    color: white;
}

.descr {
    width: 45%;
    margin-left: 10px;
    float: right;
}

.person {
    padding-bottom: 20px;
}

.avatar {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    float: left;
    margin-right: 10px;
}

.footer {
    background-color: #383838;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 2px solid black;
    padding: 5%;
}

.footer p {
    text-align: center;
}

.footer img {
    height: 25px;
    margin-left: 10px;
}

.footer a {
    color: white;
    margin: 20px;
}

.footer-links {
    text-align: center;
}

.only-mobile {
    display: none;
}

@media screen and (orientation: portrait) {
    #menu {
        padding-top: 15px;
    }

    #menu a {
        font-size: 18px;
    }

    .sectionhome {
        width: 100% !important;
    }

    .only-mobile {
        display: inline;
    }
}