@font-face {
    font-family: "Material Symbols Rounded Filled Medium";
    font-style: normal;
    src: local("Material Symbols Rounded Filled Medium");
    src: url("./fonts/Material_Symbols_Rounded_Filled_Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Celestia Medium Redux";
    font-style: normal;
    src: local("Celestia Redux");
    src: url("./fonts/Celestia_Medium_Redux.ttf") format("truetype");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    &::-webkit-scrollbar,
    &::-webkit-scrollbar:vertical,
    &::-webkit-scrollbar:horizontal,
    &::-webkit-scrollbar-corner {
        width: 10px;
        height: 10px;
        background-color: #02162e;
    }

    &::-webkit-scrollbar-thumb {
        background-color: #575662;
        border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb:hover {
        background-color: #6900ff;
    }
}

.mso {
    font-family: "Material Symbols Rounded Filled Medium", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

body {
    font-family: "Celestia Medium Redux", serif;
    background-color: #02162e;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: x-large;
    color: #00ffff;
}

header {
    width: 100%;
    height: 150px;
    background-image: url("./images/JWRfon.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.headerImage {
    border-radius: 50%;
    width: 150px;
    position: absolute;
    top: 50%;
    margin-left: calc(-150px / 2);
}

main {
    margin-top: 100px;
}

.social {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background-color: #00000025;
}

.socialURL {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    color: darkviolet;

    &:hover {
        background-color: #02ffff;
        color: deeppink;
    }
}

.socialURLImage {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    margin-right: 15px;
    object-fit: contain;
}

.nicknameImage {
    max-width: 100%;
}

.scroll {
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 75px;
    height: 75px;
    z-index: 10;
    background-color: #0000003F;
    border-radius: 15px;
    cursor: pointer;
    user-select: none;
    color: #ffffff80;
    font-size: 65px;

    &:hover {
        background-color: #000000bf;
        color: white;
    }
}
