@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro');

html,
body,
section,
p,
header,
nav,
footer,
div,
article,
aside,
ol,
ul,
li,
h1,
h6 {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Kantumruy Pro';
    font-size: 24px;
    color: white;
    scroll-padding-top: 25%;
}

.wrapper {
    width: auto;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* MAIN COMPONENTS */

.gradient-container {
    background-image: linear-gradient(#271F47 39%, #2E2E2E 96%);
    background-size: cover;
    width: auto;
    overflow: hidden;
}

.main-container {
    background: #2E2E2E;
    height: 300rem;
    background-size: cover;
    width: auto;
    overflow: hidden;
}

.line {
    position: absolute;
    top: 400px;
    bottom: 0;
    left: 400px;
    z-index: 0;
    width: 1px;
    background-color: #747474;
}

.break {
    border: 1px solid #747474;
    outline: 8px solid #ffffff;
    outline-offset: -0.8rem;
    border-radius: 100%;
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: -46px;
    margin-left: -102px;
    margin-top: 30%;
    background-color: #2E2E2E;
}

.section-title {
    font-weight: bold;
    font-size: 48px;
    letter-spacing: 5px;
}

.hidden {
    opacity: 0;
    transform: translateX(-5%);
    transition: all 1s;
}

.show {
    opacity: 1;
    transform: translateX(0px);
}

.video {
    filter: blur(2px);
}

footer {
    margin-top: 15%;
}

/* NAVIGATION */
.navbar {
    padding: 20px;
    background-color: rgba(39, 31, 71,.7);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.icon {
    border: 3px solid white;
    border-radius: 100px;
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 5px
}

    .icon:hover {
        border: 3px solid rgb(62, 115, 115);
        color: rgb(62, 115, 115);
    }

.links {
    display: inline;
    float: right;
}

.nav-item {
    display: inline-block;
    padding: 5px;
}

    .nav-item a {
        text-decoration: none;
        color: white;
    }

    .nav-item a:hover {
        color: rgb(62, 115, 115);
    }

/* CONTENT */
.content {
    position: absolute;
    left: 485px;
}

/* PROFILE */
.profile {
    position: absolute;
    top: 0;
    left: 182px;
    z-index: 50;
}

.profile img {
    border-radius: 100%;
    outline: 2px solid #ffffff;
    max-height: 18rem;
    position: absolute;
    top: 200%;
}

.bio {
    font-weight: bold;
    font-size: 80px;
    letter-spacing: 2px;
    position: relative;
    left: 65%;
    top: 380px;
    width: 33rem;
}

.bio p {
    font-weight: normal;
    letter-spacing: 5px;
    font-size: 22px;
    max-width: 100%;
}

/* ABOUT */

.text {
    max-width: 60%;
    letter-spacing: normal;
    font-size: 22px;
    font-weight: normal;
}

.about a {
    color: white;
}

    .about a:hover {
        color: rgb(62, 115, 115);
    }

.sub-points {
    padding-bottom: 5px;
    padding-top: 5px;
}

.sub-points li {
    font-size: 20px;
    margin-left: 2rem;
}

ul li {
    padding-bottom: 10px;
}

.link {
    color: white;
}

    .link:hover {
        color: rgb(62, 115, 115);
    }

.icons {
    font-size: 45px;
    color: rgb(156, 185, 209);
}

.video {
    max-width: 640px;
}


@media screen and (max-width: 768px) {
    html,
    body,
    section,
    p,
    header,
    nav,
    footer,
    div,
    article,
    aside,
    ol,
    ul,
    li,
    h1,
    h6 {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Kantumruy Pro';
        font-size: 24px;
        color: white;
        scroll-padding-top: 25%;
    }

    .wrapper {
        margin: 0;
        padding: 0;
    }

    .break {
        margin-bottom: -46px;
        margin-left: -50px;
    }

    .line {
        display: none;
        left: 0;
    }


    .profile {
        margin-left: -45%;
    }

    .profile img {
        width: 340px;
        margin-left: 7%;
    }

    .bio {
        font-weight: bold;
        font-size: 42px;
        letter-spacing: 2px;
        text-align: center;
        position: relative;
        left: 0;
        top: 700px;
        width: 100%;
    }

    .content {
        position: absolute;
        left: 16%;
    }

    .text {
        max-width: 100%;
        font-size: 18px;
    }

    .sub-points li {
        font-size: 18px;
        max-width: 100%;
    }

    #about, #skills, #projects, #contact {
        max-width: 90%;
        scroll-padding: -50%;
    }

    .video {
        max-width: 360px;
    }
}