body {
    background-color: #008080;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
}

.title-bar-text {
    pointer-events: none;
}

.window {
    position: absolute;
    margin: auto;
}

.window[aria-hidden="true"] {
    display: none;
}

.window:not(.start-menu) .title-bar {
    cursor: move;
}

.start-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 27px;
    outline: 1px solid rgb(223, 223, 223);
    border-top: 1px solid rgb(255, 255, 255);
    background: rgb(192, 192, 192);
    color: rgb(0, 0, 0);
    display: flex;
}

.start-bar button {
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
}

.start-bar button[aria-expanded="true"] {
    box-shadow:
        inset -1px -1px #ffffff,
        inset 1px 1px #0a0a0a,
        inset -2px -2px #dfdfdf,
        inset 2px 2px #808080;
}

button img {
    height: 14px;
}

.start-bar button span {
    margin-left: 5px;
    font-size: 14px;
}

.start-bar button[aria-controls="about-me-window"] span {
    font-weight: bold;
}

.divider {
    border-left: 1px solid rgb(128, 128, 128);
    border-right: 1px solid rgb(255, 255, 255);
    margin: 2px 0 2px 0;
}

.start-menu {
    position: absolute;
    bottom: 100%;
    width: 400px;
    color: rgb(0, 0, 0);
    display: grid;
    grid-auto-flow: column;
}

.window[aria-hidden="true"] {
    display: none;
}

.start-menu .me {
    text-overflow: wrap;
    overflow-wrap: break-word;
    padding: 16px 32px 16px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.2rem;
}

.start-menu .me h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.start-menu-bar {
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    background: linear-gradient(0deg, navy, #1084d0);
    justify-content: space-between;
    padding: 3px 2px 3px 3px;
}

.start-menu-bar a {
    color: rgb(255, 255, 255);
    font-weight: 700;
    text-decoration: none;
}

.repos {
    display: grid;
    grid-template-rows: repeat(auto-fit, 75px);
    grid-auto-flow: column;
    padding-top: 1rem;
    grid-auto-columns: 70px;
    height: calc(100% - 28px);
    width: 100%;
    box-sizing: border-box;
    column-gap: 0;
    row-gap: 1rem;
}

.repo {
    display: grid;
    grid-auto-flow: row;
    gap: 8px;
    align-items: start;
    place-items: center;
    text-align: center;
    align-content: start;
    text-decoration: none;
}
.repo img {
    width: 32px;
}

.repo span {
    color: white;
    font-size: 11px;
    display: block;
    width: 70px;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 500;
}

.window#about-tech-window {
    width: 600px;
    height: 400px;
}
