@font-face {
    font-family: "Noto Sans";
    src: url("../resource/NotoSans.otf");
}

body {
    background-color: #1a1b26;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

p,
a {
    font-family: "Noto Sans";
}

a,
a:visited {
    text-decoration: none;
    color: #bb9af7;
    transition: ease-in 0.2s;
}

a:hover,
a:visited:hover {
    color: #7aa2f7;
}

header {
    max-width: 100%;
    width: 100%;

    max-height: 5rem;
    height: 5rem;

    overflow: hidden;

    padding: 0;
    margin: 0;

    top: 0;
    left: 0;

    align-items: center;
    text-align: center;

    position: sticky;
    display: block;

    z-index: 100;

    background-color: #1a1b26;

    border-bottom: 1px solid #414868;
}

.headerContainer {
    width: auto;
    height: 5rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;

}

.profileImg {
    width: 3rem;
    height: 3rem;

    border-radius: 50%;
    border-style: solid;
    border-color: #9aa5ce;
    border-width: 0.2rem;

    opacity: 0.8;

    position: relative;
    display: inline-block;
}

.profileText {
    position: relative;
    color: #9aa5ce;
    display: inline-block;
    padding: 0;
    margin: 0;
    padding: 0.2rem;
}

.profileTextAndLinks {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 1rem;
    padding-top: 0.2rem;
}

.linkiconImage {
    color: #9aa5ce;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.articlesContainer {
    position: relative;
    height: auto;
    width: 75rem;
    max-width: 75rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    min-height: 100%;
    z-index: 10;
    justify-content: center;
}

.articlesScrollable {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    justify-content: center;
    display: flex;
}

.articleTitleAndViews {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.articleContainer {
    max-width: 25rem;
    max-height: 8rem;
    width: 25rem;
    height: 8rem;
    overflow: hidden;
    border: 2px solid #565f89;
    border-radius: 1rem;

    padding: 1rem;

    background-color: #1a1b26;

    transition: ease-in 0.35s;

    margin: 1rem;
    cursor: default;
}

@media screen and (max-width: 26rem) {
    .articleContainer {
        width: 15rem;
        height: 10rem;
        max-width: 15rem;
        max-height: 10rem;
    }
}

.articleContainer:hover {
    background-color: #24283b;
    cursor: pointer;
    transition: ease-in 0.15s;
}

.articleHr {
    max-width: 15rem;
    text-align: left;
    margin-left: 0;
    color: #414868;
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #414868;
    padding: 0;
}

.articleTitle {
    color: #c0caf5;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    max-width: 90%;
    padding: 0;
    margin: 0;
}

.articleViews {
    display: inline-flex;
    width: max-content;
    height: auto;
    flex-direction: column;
    align-items: center;
    transform: translateY(15%);
    position: absolute;
    right: 0;
}

.articleIcon {
    padding: 0;
    margin: 0;
    font-size: 0.7rem;
}

.articleViewsText {
    color: #9aa5ce;
    padding: 0;
    margin: 0;
    font-size: 0.7rem;
}

.articleText {
    color: #9aa5ce;
    font-size: 0.8rem;
    display: inline;
    padding-bottom: 0;
    margin-bottom: 0;
}

.articleDate {
    color: #565f89;
    font-size: 0.6rem;
    margin-left: 0.25rem;
    display: inline;
}

.footerText {
    color: #9aa5ce;
    font-size: 0.8rem;
}

.footerIconContainer {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.footerIcon {
    color: #9aa5ce;
    transition: ease-in 0.2s;
}

.footerIcon:hover {
    color: #c0caf5;
    transform: translateY(15%);
}

.footerIconImage {
    color: #9aa5ce;
    transition: ease-in 0.2s;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footerIconImage:hover {
    color: #c0caf5;
}

.footerIcon::after {
    position: absolute;
    content: attr(hint);
    color: #c0caf5;
    opacity: 0;
    transition: ease-in 0.2s;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
}

.footerIcon:hover::after {
    opacity: 1;
}

footer {
    max-width: 100%;
    width: 100%;

    max-height: 3rem;
    height: 3rem;

    overflow: hidden;

    padding: 0;
    margin: 0;

    bottom: 0;
    left: 0;

    align-items: center;
    text-align: center;

    position: sticky;
    display: block;

    z-index: 100;

    background-color: #1a1b26;

    border-top: 1px solid #414868;
}