#header-info :first-child,
#header-info :nth-child(2) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* background-color: red; */
}
#line1 {
    line-height: 4rem;
}
#line2 {
    margin-bottom: 40px;
}
main{
    padding-top: 100px;
}
header{
    width: max-content;
    position: fixed;
    margin: 50px auto;
    left: 50%;
    transform: translate(-50%);
}
header ol{
    display: flex;
    padding: 6px 12px;
    gap: 1rem;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    background-color: var(--background);
}
section{
    scroll-margin-top: 100px;
}
#header-img {
    border-radius: 1rem;
    height: calc(100vw / 2.7);
    object-fit: cover;
}

.section-contents {
    padding: 0px 80px;
    margin-bottom: 160px;
}
.section-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-transform: uppercase;
    border-bottom: 1px dashed var(--text);
    margin: 80px 0px 64px 0px;
    line-height: 3rem;
}
.mini-section {
    margin-top: 5rem;
}
.mini-section-title {
    display: grid;
    grid: 1fr / auto 1fr;
    gap: 1rem;
    /* padding: 0px 80px; */
}
.tool-icon {
    width: 2.5rem;
}
#tools-imgs {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}
#tools-imgs img:hover {
    cursor: default;
}
hr {
    border: none;
    border-top: 1px dashed var(--accent);
}
h1 {
    font-size: 4.5rem;
    text-transform: uppercase;
}
h2 {
    font-family: "PP Neuebit";
    font-size: 3rem;
    text-transform: uppercase;
}
#endNav {
    display: grid;
    grid: 1fr / 1fr 64px 1fr;
    gap: 1rem;
}
#prevProj {
    grid-area: 1 / 1 / 2 / 2;
    text-align: right;
    width: fit-content;
    justify-self: right;
}
#toTopBtn {
    background-color: var(--background);
    color: var(--accent);
    grid-area: 1 / 2 / 2 / 3;
}
#toTopBtn:hover {
    background-color: var(--accent);
    color: var(--background);
}
#nextProj {
    grid-area: 1 / 3 / 2 / 4;
    text-align: left;
    width: fit-content;
    justify-self: left;
}
