nav {
    display: flex;
    justify-content: flex-end;
    background-color: black;
    color: white;
    text-align: center;
}
.logo {
    font-family: VT323-Regular, monospace;
    font-size: 24px;
    color: goldenrod;
    margin-right: auto;
    padding-left: 15px;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}
nav a:hover {
    text-decoration: underline;
    color: #00ffff;
}
nav ul {
    list-style: none;
    display: flex;
}
.main-flex {
    display: flex;
    min-height: 80vh;
}
.left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5vh;
}
.home-header p, .home-subheader p {
    margin: 0;
    padding: 0;
}
.home-header {
    display: flex;
    justify-content: center;
    font-size: 70px;
    margin-bottom: 0px;
}
.home-header p {
    margin: 0;
    padding: 0;
    font-size: 70px;
    position: relative;
    cursor: default;
}
.home-subheader {
    display: block;
    font-size: 16px;
    font-family: 'Fira Mono', monospace;
    font-weight: 500;
    margin: -35px 0 0 30px;
    padding: 0;
    letter-spacing: 2px;
}
.home-image {
    font-family: monospace;
    font-size: 5px;
    line-height: 1.2;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20vh;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: default;
    background: radial-gradient(circle, lime, #00ffff);
    background-clip: text;
    color: transparent;
}
.link-table, .link-table-two {
    width: 100%;
    max-width: 300px;
    min-width: 0;
}
.link-table table, .link-table-two table {
    width: 100%;
    border-collapse: collapse;
}
.link-table p, .link-table-two p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    display: flex;
    justify-self: flex-start;
    cursor: default;
}
td {
    padding: 10px 10px;
    text-align: center;
    border: 1px solid white;
}
td a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
td a:hover {
    text-decoration: underline;
    color: #00ffff;
}
.divider {
    width: 1px;
    background: white;
    margin-top: 7vh;
    align-self: stretch;
}
.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
}
.dullboy { 
    overflow: hidden; 
}
.dullboy-pre {
    font-family: 'Courier New', monospace;
    white-space: pre;
    line-height: 1;
    font-size: 8px;
    animation: glitch 1s infinite;
}
@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}
footer {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    left: 0;
    padding: 0 30px;
    box-sizing: border-box;
    background-color: black;
}
.v-left, .c-right {
    text-align: left;
}
.v-left a, .c-right a {
    color: pink;
    text-decoration: none;
}
.v-left a:hover, .c-right a:hover {
    text-decoration: underline;
    color: #00ffff;
}
/* tablets and below */
@media (max-width: 900px) {
    .dullboy-pre { 
        font-size: 4px;
    }
    .main-flex {
        flex-direction: column;
        min-height: unset;
    }
    .divider {
        display: none;
    }
    .left-side, .right-side {
        flex: unset;
        width: 100%;
        max-width: unset;
        align-items: center;
        padding-top: 3vh;
        margin-left: 0;
    }
    .link-table, .link-table-two {
        max-width: 90vw;
    }
    footer {
        align-items: flex-start;
        padding: 10px 20px;
        font-size: 14px;
    }
    .v-left, .c-right {
        text-align: left;
        margin-bottom: 5px;
    }
    .home-header p {
        font-size: 50px;
    }
    .home-subheader {
        font-size: 14px;
        margin: -25px 0 0 20px;
    }
    .home-image {
        font-size: 4px;
        height: 15vh;
    }
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    nav a {
        padding: 8px 10px;
        font-size: 14px;
    }
}
/* tablets */
@media (max-width: 768px) {
    .dullboy-pre { 
        font-size: 5px;
    }
    .home-header p {
        font-size: 55px;
    }
    .home-image {
        font-size: 4.5px;
    }
}
/* mobile */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .logo {
        font-size: 20px;
    }
    .home-header p {
        font-size: 40px;
    }
    .home-subheader {
        font-size: 12px;
        margin: -20px 0 0 15px;
        letter-spacing: 1px;
    }
    .home-image {
        font-size: 3px;
        height: 12vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .link-table p, .link-table-two p {
        font-size: 16px;
    }
    td {
        padding: 8px 8px;
    }
    td a {
        font-size: 14px;
    }
    .dullboy-pre {
        font-size: 3px;
    }
    nav ul {
        padding: 0;
        margin: 0;
    }
    nav a {
        width: 100%;
        text-align: center;
    }
}
/* small phones */
@media (max-width: 400px) {
    .home-header p {
        font-size: 32px;
    }
    .home-subheader {
        font-size: 10px;
        margin: -15px 0 0 10px;
    }
    .home-image {
        font-size: 2.5px;
        height: 10vh;
    }
    .dullboy-pre {
        font-size: 2.5px;
    }
}