html {
    background-color: black;
    background: url(TZ_static_bg.svg) no-repeat fixed;
    background-size: cover;
    font-family: "SpaceMono-Regular";
}

@font-face {
    font-family: 'SpaceMono-Regular';
    src: url("font/SpaceMono-Regular.ttf");
    font-weight: normal;
}

@media (min-width: 768px) { /* Desktop */
    header #hamburgerMenu, header .icon, header ul {
        display: none;
    }
    header {
        line-height: 10%;
    }
    header h1{
        font-size: 3.5rem;
    }
    header p {
        font-size: 1.3rem;
    }
    .mainSection {
        columns: 2;
    }
    .rightside {
        margin-top: 2%;
        margin-right: 50px;
        float: right;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .leftside article {
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.548);
        border: 5px solid rgb(0, 110, 255);
        border-left: 20px solid rgba(0, 110, 255, 0.192);
        margin: 1%;
        padding: 1%;
        backdrop-filter: blur(3px);
        width: 30vw;

        margin-left: 15px;
        padding-left: 2%;
    }

}

@media (max-width: 769px) { /* Mobile */
    header {
        line-height: 60%;
    }
    header h1, header .icon{
        font-size: 30px;
    }
    header p {
        font-size: 12px;
    }
    header #hamburgerMenu {
        position: absolute;
        top: 80px;
        right: 10px;
        text-align: right;
    }
    header #hamburgerMenu ul {
        list-style-type: none;
    }
    header #hamburgerMenu li {
        margin-bottom: 30px;
    }
    header #hamburgerMenu a {
        font-size: 12px;
    }
    header .icon {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    header #activePage {
        pointer-events: none;
        color: orange;
        border: 2px solid orange;
    }
    header a {
        padding: 5px;
        color: whitesmoke;
        background-color: rgba(14, 59, 117, 0.938);
        border: 2px solid rgb(0, 110, 255);
        text-decoration: none;
    }
    .mainSection {
        columns: 1;
    }
    .rightside {
        display: none;
    }
    .leftside article {
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.548);
        border: 2px solid rgb(0, 110, 255);
        border-left: 5px solid rgba(0, 110, 255, 0.192);
        margin: 5%;
        padding: 5%;
        backdrop-filter: blur(3px);
        width: auto;
    }
    .leftside p {
        font-size: 12px;
    }
    .leftside h2 {
        font-size: 16px;
    }
}

body {
    color: whitesmoke;
}

header {
    z-index: 998;
    top: 0;
    position: sticky;
    text-align: left; 
    padding: 0.1%;
    background: url("TZ_banner.png");
    text-shadow: 2px 3px 3px rgba(0, 217, 255, 0.884);
    padding-left: 2%;
    border-bottom: 2px solid rgba(0, 200, 255, 0.3);
    backdrop-filter: blur(6px);
}

header #hamburgerMenu {
    display: none;
}

footer {
    text-align: center;
    background-color: rgba(0, 110, 255, 0.192);
    padding: 0.5%;
    border-top: 2px solid rgba(0, 200, 255, 0.3);
}

button {
    background-color: rgba(0, 110, 255, 0.192);
    border: 5px solid rgb(0, 110, 255);
    border-radius: 10%;
    corner-shape: notch bevel bevel notch;
    box-shadow: 2px 3px 3px rgba(0, 60, 255, 0.671);
    transform: scale(1);
    transition: 0.2s;
}

button:hover {
    cursor: pointer;
    background-color: rgba(0, 110, 255, 0.753);
    transform: scale(1.1);
    transition: 0.2s ease-in;
}

button p {
    display: none;
    color: orange;
}

button:hover p {
    display: block;
}

article {
    display: inline-block;
}

.rightside {
  width: 100%;
}

.rightside button {
    font-family: "SpaceMono-Regular";
    color: whitesmoke;
    height: 140px;
    width: 100%;
    font-size: 1.5rem;
}

@keyframes bgScroll {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 5821px;
    }
}

.grid {
    opacity: 0.02;
    background: url("Grid_pattern.svg");
    background-size: cover;
    background-repeat: repeat;
    animation: bgScroll 155s linear infinite;
}

.grid2 {
    opacity: 0.1;
    background: url("TZ_bg_map.svg");
    background-size: cover;
    background-repeat: repeat;
    animation: bgScroll 155s linear infinite;
}

.grid, .grid2 {
    top: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.believe {
    color: orange;
    text-shadow: 5px 5px 3px rgba(255, 166, 0, 0.541);
}

.outlierButton {
    grid-column: 1 / -1;
    height: fit-content;
}

.codeLeft {
    border-left: 3px solid whitesmoke;
    padding-left: 5px;
}

.warningText {
    display: flex;
    background-color: rgba(255, 0, 0, 0.582);
    border: 2px solid rgb(255, 46, 46);
    padding: 2px;
    margin: 2%;
    font-size: 10px;
    width: auto;
    text-align: center;
    justify-content: center;
}