html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background-color: hsl(270, 51%, 41%);
}

hr {
    width: 100%;
}

.site-header {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    width: 100%;
    background-color: hsl(270, 51%, 37%);
    overflow: visible;
}

.index-content {
    margin-left: 0;
}

.menu-toggle-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    width: 32px;
    height: 24px;
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
    z-index: 10;
    color: hsl(0 0% 98%);
}

.menu-toggle-button span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: hsl(0 0% 98%);
    border-radius: 2px;
}

.site-header-items {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding: 60px 15px 15px;
    box-sizing: border-box;
}

.site-logo {
    width: 50px;
}

.site-header-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 0;
}

.button-home, .button-profile, .button-apps, .button-stats, .button-help {
    padding: 10px 8px;
    font-size: 15px;
    white-space: nowrap;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-align: center;
}

.index-content, .apps-content, .about-me-content, .stats-content, .help-content, .pacman-content, .linkbot-content {
    margin-left: 0px;
    padding: 20px;
    box-sizing: border-box;
}

.site-header:has(.menu-toggle-checkbox:checked) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 20;
    overflow-y: auto;
}

.menu-toggle-checkbox:checked ~ .site-header-items {
    display: flex;
    height: 100%;
    box-sizing: border-box;
}