body {
    /* overrides framework template that allows navbar at top of page */
    grid-template-rows: auto;
}

#profile_photo {
    position: absolute;
    top: 22.5px;
    left: 20%;
    display: block;
    width: clamp(150px, 10%, 450px);
    aspect-ratio: 1/1;
    aspect-ratio: 1/1;
    border-radius: 10%;
    z-index: 100;
    background-color: brown;
    padding: 0;
    margin: 0 auto;
    align-items: center;
    border: solid 4px var(--theme-color-2);
    transform: translate(-50%, -50%);
    animation: shift-in-from-left 300ms 100ms backwards;
}

#center_nav {
    position: relative;
    background-color: var(--theme-color-2);
    z-index: 99;
    animation: infinite, inflate 300ms;
}

#nametag {
    position: absolute;
    right: -4px;
    top: calc(50% + 12.5px);
    bottom: 10%;
    white-space: nowrap;
    transform: translate(100%, 0%);
    background-color: var(--card-color-1);
    padding: 5px;
    padding-left: 30px;
    padding-right: 40px;
    border-radius: 0 0 20px 0;
    z-index: 90;
    overflow: hidden;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    height: fit-content;
}
#nametag h1 {
    font-size: larger;
    margin: 0;
}
#nametag p {
    padding: 0;
    margin: 0;
    font-size: small;
}

#status {
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translate(100%, -50%);
    width: fit-content;
}
#status h1 {
    color: white;
    text-align: left;
    padding-left: 50px;
    box-shadow: 0 0 10 grey;
    font-variant: small-caps;
    white-space: nowrap;
    line-height: 100%;
}

#contact-button {
    display: none;
}

.github-card {
    height: 100%;
    aspect-ratio: 1/1;
    float: left;
    margin: 5px;
}

@media only screen and (max-width: 991px) {
    .github-card {
        width: 100px;
        height: 100px;
    }
}