a {
    color: var(--linkBlue);
    text-decoration: none;
    font-weight: 500;
}

li {
    color: var(--lightText);
    line-height: 1.5;
}

.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-weight: 500;
    margin-bottom: 50px;
}

#logo {
    width: 2em;
    height: 2em;
    margin-top: -8px;
    padding-left: 10px;
    padding-right: 10px;
}

#arrow {
    width: 20px;
    transform: rotate(90deg);
}

#arrow-box {
    width: 20px;
}

#info {
    display: flex;
}

#content #subtext {
    color: var(--linkBlue);
    padding-bottom: 15px;
    font-size: 14pt;
}

#content #subtext::before {
    width: 15px;
    height: 2px;
    border-top: 2px solid var(--linkBlue);
    content: "";
    display: inline-block;
    margin: 0 7px;
    transform: translateY(-3px);
}

.section {
    margin-top: 20px;
}

.sectionImage {
    height: 350px;
    margin-top: 30px;
}

.sectionImage img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0px 0px;
    object-fit: cover;
}

.imageInfo {
    background: var(--boxes);
    padding: 10px;
    text-align: center;
    border-radius: 0px 0px 10px 10px;
    margin-bottom: 30px;
}

.section p {
    color: var(--lightText);
    line-height: 1.5;
}

.info {
    width: 80%;
    margin: 30px;
    background: var(--boxes);
    padding: 15px;
    border-radius: 10px;
}

@media only screen and (max-width: 900px) {
    .sectionImage {
        height: 50vw;
    }
}

.code {
    background: #c2c2c2;
    padding: 4px;
    color: black;
    border-radius: 5px;
}