/*------------------------------about------------------------------*/
.about {
    visibility: hidden;
    position: fixed;
    display: flex;
    top: calc(var(--topBarH) + 1.2rem);
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0);
}

.about.active {
    visibility: visible;
    background: rgba(0, 0, 0, 0.5);
}

.about .aboutCard {
    width: 50rem;
    height: 33rem;
    margin: auto;
    padding-left: 1rem;
    padding-right: 2rem;
    opacity: 0;
    transform: scale(0.6);
    background: var(--background);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.about.active .aboutCard {
    opacity: 1;
    transform: scale(1);
}
.about .aboutCard hr{
    margin-left: 1.4em;
}
.about .aboutCard h1{
    font-size: 2.6rem;
    padding: 0rem;
}
.about .aboutCard h2{
    font-size: 2.2rem;
    padding: 1rem;
}

#closeAbout {
    position: absolute;
    width: 3.2rem;
    line-height: 3.2rem;
    top: 1rem;
    right: 2rem;
    cursor: pointer;
    border-radius: 1.6rem;
    border: 1px solid #aaa;
    color: #888;
    text-align: center;
    font-size: 2.8rem;
}

#closeAbout:hover {
    background: rgba(255, 0, 0, 0.5);
    color: #fff;
}

.aboutContent {
    width: 90%;
    margin: auto;
    height: 90%;
}

.aboutContent h2 {
    display: flex;
}

.aboutContent h2 span {
    font-weight: 400;
    margin-left: 1rem;
}

.aboutContent h2 i {
    display: block;
    font-size: 2.2rem;
    margin-top: 0.3rem;
}