html, body {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: white;
    overflow: hidden;
}
*, ::before, ::after {
    box-sizing: border-box;
    outline: none;
}



#wrapper {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: url("/assets/mountain-gee2466911_1280.jpg") no-repeat fixed;
    background-size: cover;
    background-position: center;
}



.box {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    width: 280px;
    max-height: 80vh;
    height: auto;
    padding: 15px 0;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
    border-radius: 5px;
    position: relative;
    z-index: 1;
    background: inherit;
    overflow: hidden;
}
.box::before {
    content: "";
    position: absolute;
    background: inherit;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    filter: blur(10px);
    margin: -20px;
}



.box_header {

}
.box_content {
    overflow-y: auto;
}
.box_footer {

}



.profile_img_wrapper {
    display: inline-block;
    text-align: center;
    position: relative;
    margin: 25px 30px;
}
.profile_img {
    width: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    -webkit-box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.06);
}
.profile_img:hover {
    -webkit-box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.1);
}
.profile_img_wrapper::after {
    position: absolute;
    content: "";
    bottom: -2px;
    right: -2px;
    width: 35px;
    height: 35px;
    background-image: url("https://cdn.discordapp.com/attachments/757979804988604538/766331226604437524/employer.png");
    background-repeat: no-repeat;
    background-size: 33px 33px;
}



.profile_name {
    font-weight: 700;
    font-size: 1.5em;
    padding: 10px 20px;
}

.profile_desc {
    padding: 10px 20px;
    font-size: 1em;
}

.profile_social {
    display: flex;
    justify-content: space-around;
    margin-top: 17px;
    width: 100%;
    flex-wrap: wrap;
    padding: 10px 20px;
}
.profile_social.two_items {
    justify-content: space-evenly;
}
.profile_social_item {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: box-shadow 0.3s ease;
    margin: 10px;
}
.profile_social_item:hover {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
    -o-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.06);
}
.profile_social_item i {
    color: white;
    font-size: 2.2rem;
}



#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    font-size: 0.9em;
    padding: 20px;
}
#footer a {
    color: white;
    text-decoration: none;
}
#footer_text {
    -webkit-filter: drop-shadow(0 0 3px rgb(30, 30, 30));
    filter: drop-shadow(0 0 3px rgb(30, 30, 30));
}
#footer_logo {
    width: 80px;
    margin-bottom: 3px;
    -webkit-filter: drop-shadow(0 0 3px rgb(30, 30, 30));
    filter: drop-shadow(0 0 3px rgb(30, 30, 30));
}



#nav_toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 3;
    cursor: pointer;
}
#nav {
    position: fixed;
    top: 7px;
    right: 7px;
    display: flex;
    flex-flow: column;
    background-color: #151515;
    padding: 7px 7px 6px 7px;
    border-radius: 3px;
    font-size: 0.8em;
    z-index: 2;
}
#nav_logo {
    width: 50px;
    margin-bottom: 6px;
}
.nav_item {
    margin-top: 3px;
    color: #c8c8c8;
    text-decoration: none;
}
.nav_item.report {
    color: #ec1818;
}
#nav.launch {
    display: none;
}
#nav.invisible {
    animation: fadeOut 0.5s ease;
    opacity: 0;
}
#nav.visible {
    display: flex;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    60% {
        opacity: 0;
    }
    100% {
        display: none;
    }
}
