body {
    padding: 0;
    margin: 0;
    color: #f7f7f7;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    background-image: repeating-linear-gradient(45deg, #6f0c0c, #6f0c0c 40px, #6f0c0cd4 40px, #6f0c0cd4 68px);
}

.footer {
    background-color: #050517;
    text-align: center;
    min-height: 10rem;
    padding: 2rem;
}

h1 {
    font-family: "Squada One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 70pt;
    color: white;
    text-align: right;
    padding-right: 0.5em;
    border-right: 4px solid #f7f7f7;
    margin: 0 1rem 0 0;
}

h2 {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 20pt;
    color: #f7f7f7;
    background-color: #050517;
    text-align: center;
    padding: 1rem;
    animation-name: rotate;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 0;
}

h3 {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 16pt;
    color: #f7f7f7;
    text-align: center;
    padding: 1rem;
}

.tab{
    margin-left:4rem;
}

a {
    color: white;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

@keyframes rotate {
    from {
        opacity:0;
        transform: rotate(0deg);
    }

    to {
        opacity:1;
        transform: rotate(-2deg);
    }
}

.pnl {
    padding: 0;
    display: flex;
    align-items: stretch;
    align-content: center;
    width: 100%;
    justify-content: center;
}

.pnl_inner {
    padding: 2rem 2rem 0rem 2rem;
    width: 100%;
}

/*.pnl:nth-of-type(2n+1) {
    background-color: #6f0c0c;
}*/

.subpnl {
    min-width: 50%;
    padding: 2rem;
    height: 100%;
    /*background-color: #f7f7f7;*/
    box-sizing: border-box;
    font-size: 1.5rem;
    text-align: center;
    border-right: 2px solid white;
    /*    display:flex;
    justify-content:center;
    align-content:center;*/
    align-self: center;
}

    .subpnl:last-of-type {
        border-right: none;
    }

    .subpnl img {
        width: 70%;
        height: auto;
    }

.separator {
    text-align: center;
    padding: 2rem 0rem 2rem 0rem;
    /* border:1px solid green;*/
}
