@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@500&display=swap');

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'Noto Sans', sans-serif;
    transition: var(--primary-transition);

}

*::selection {

    background: var(--primary-dark);

    color: var(--text-color);

}

html,
body {

    height: 100%;

}

body {

    --primary: #000;

    --white-color: #fff;
    --black-color: #000;

    --box-shadow-opacity: rgba(215, 215, 215, .7);

    --primary-font: 'IBM Plex Mono', monospace;
    --secondary-font: 'Noto Sans', sans-serif;

    --primary-transition: all .3s;

    background: #fff;

    overflow-x: hidden;

}

body::-webkit-scrollbar {
    display: none;
}

.banner {

    position: relative;

    width: 100%;
    height: 200px;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    background: #fad9d6;

    pointer-events: none;

    overflow: hidden;

    z-index: -1;

}

.banner::before {

    content: '';

    width: 100%;
    height: 55px;

    background: #fff;

}

header {

    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: -100px;

    overflow: hidden;

    z-index: 5;

}

.headerImgBg {

    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #fff;

    border-radius: 50%;

    padding: 5px;

    overflow: hidden;

}

.headerImg {

    min-width: 90px;
    min-height: 90px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #fff;

    border-radius: 50%;

    -webkit-box-shadow: 0px 0px 15px 0px var(--box-shadow-opacity);
    -moz-box-shadow: 0px 0px 15px 0px var(--box-shadow-opacity);
    box-shadow: 0px 0px 15px 0px var(--box-shadow-opacity);

}

.headerImg img {

    width: 100%;

}

header p {

    font-size: 25px;
    font-family: var(--secondary-font);

    color: var(--primary);

    margin-top: 10px;


}

.profile-links {

    width: 100%;
    height: auto;
    min-height: 300px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;

    padding: 0 1rem;

    padding-top: 20px;

}

.profile-links a {

    width: 100%;
    max-width: 500px;
    height: 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: var(--primary);

    background: #fff;

    border-radius: 5px;

    -webkit-box-shadow: 0px 3px 15px 0px var(--box-shadow-opacity);
    -moz-box-shadow: 0px 3px 15px 0px var(--box-shadow-opacity);
    box-shadow: 0px 3px 15px 0px var(--box-shadow-opacity);

    margin: .6rem 0;

    padding: 0 10px;

    text-decoration: none;

    font-size: 16px;
    font-family: var(--secondary-font);

    cursor: pointer;

    transition: .3s;

}

.profile-links a img {

    --el-img: 30px;

    min-width: var(--el-img);
    max-width: var(--el-img);
    min-height: var(--el-img);
    max-height: var(--el-img);

    object-fit: cover;

    border-radius: 4px;

}

.profile-links a svg {

    --el-img: 30px;

    width: var(--el-img);
    height: var(--el-img);

}

footer {

    position: absolute;
    bottom: 1rem;

    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding: 2rem;

}

footer span {

    color: #000;

    font-size: 12px;

}

footer a {

    color: #000;

    font-size: 12px;
    font-weight: bold;

    text-decoration: underline;

    cursor: pointer;

}

[data-anime] {
    opacity: 0;
    transition: .25s !important;
}

[data-anime="left"] {
    transform: translate3d(-50px, 0, 0);
}

[data-anime="right"] {
    transform: translate3d(50px, 0, 0);
}

[data-anime="opacity"] {
    opacity: 0;
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) !important;
}

@media (max-width: 600px) {

    .banner::before {

        content: '';

        min-width: 2000px;
        min-height: 2000px;

        background: #fff;

        border-radius: 50%;

        transform: translateY(calc(100% - 50px));

        z-index: -1;

    }

}