/******* box-sizing setting ******/
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

/*** clear default ***/
html,
body,
div,
p {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    width: 100%;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-family: n_regular;
    font-size: 26px;
    background-color: #0E0E0E;
}

ul,
li {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/*** main section ***/
#preload {
    height: 100%;
    width: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.dark {
    background-color: #0E0E0E;
    color: #fff;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}

.light {
    background-color: #fff;
    color: #0E0E0E;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}

#container {
    display: none;
}

#container.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s;
}

#main {
    padding: 28px;
    width: 100%;
    height: 100dvh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header,
.footer {
    display: flex;
    justify-content: space-between;
    line-height: 26px;
}

.right-align {
    text-align: end;
}

.content-container {
    flex-shrink: 2;
    position: relative;
}

.overlay {
    display: none;
    position:absolute;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: end;
}

.bg-block {
    width: 100%;
    height: 2px;
}

.content {
    flex-shrink: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
}

.icon-container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#smile,
#smile-dark,
#circle,
#circle-dark {
    height: 16px;
    width: 16px;
}

#circle {
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
}

#circle-dark {
    background-color: #0E0E0E;
    border-radius: 50%;
    cursor: pointer;
}

#smile-dark,
#circle-dark {
    display: none;
}

.reel-container {
    flex-grow: 1;
    max-width: 800px;
    max-height: 100%;
    display: flex;
    justify-content: space-around;
}

.reel-container>img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

#profile {
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#bio-container {
    max-width: 760px;
    padding: 160px 0 200px;
    font-size: 28px;
    line-height: 31px;
}

.leading-text {
    padding: 50px 0 20px;
    opacity: 60%;
    font-size: 13px;
    line-height: 22px;
}

.link {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

#profile>.header {
    width: 100%;
}