/*Reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*Start*/
body{
    height: 100vw;
    overflow: hidden;
    background: radial-gradient(at 0% 0%,#1920e0e5 5%,#571ddee7, #de1d7ed7, #d83ee082);
}

#nav{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    border-bottom: 2px solid black;
    border-bottom-right-radius: 90px;
    border-bottom-left-radius: 90px;
    padding: 10px 0;
    background: linear-gradient(0deg, black 30%, #51088dbe);
}

#nav-list{
    padding: 0 30px;
    display: flex;
    gap: 10%;
    list-style: none;
}

.nav-li > a > i, .nav-li > a{
    color: white;
    padding: 15px 30px;
    font-size: 35px;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

ul li:hover a i{
    position: relative;
    font-size: 40px;
    transform: translateY(2px);
    color: rgb(58, 58, 233);
    border-radius: 20px;
    background-color: black;
    box-shadow: 0.5px 0.5px 0 2px;
}


main{
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%,-50%);
    width: 80%;
    height: 85%;
    border-radius: 25px;
    background-color: black;
    background: rgba(0,0,0,0.2);
    z-index: -1;
    overflow: hidden;
}

#profile_img{
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 0 5px 30px 5px;
    box-shadow: 0 0 5px 3px rgb(85, 6, 109);
    z-index: 2;
}

#profile_name{
    position: absolute;
    left: 25%;
    top: 5%;
    color: white;
    font-size: 90px;
    padding: 15px 20px;
    border: 2px solid rgb(85, 85, 85);
    background-color: black;
    border-radius: 0 50px;
}

#profile_text{
    position: absolute;
    left: 25%;
    top: 22%;
    color: white;
    font-size: 90px;
}

#intro{
    position: absolute;
    left: 6%;
    top: 47%;
    font-size: 50px;
    color: white;
    max-width: 85%;
    background-color: rgba(20, 1, 24, 0.555);
    border-radius: 10px;
    padding: 20px 20px;
}

@media screen and (max-width: 1919px) {

    #profile_name{
        left: 30%;
    }

    #profile_text{
        left: 30%;
        top: 25%;
    }

    #intro{
        font-size: 40px;
        left: 4%;
        top: 53%;
        max-height: 310px;
        max-width: 90%;
    }
}

@media screen and (max-width: 767px){

    #nav-list{
        gap: 0;
    }

    .nav-li > a > i, .nav-li > a{
        font-size: 40px;
        padding: 10px;
    }

    body{
        overflow: auto;
    }

    main{
        margin-top: 5%;
    }

    #profile_img{
        width: 100%;
        height: 50%;
    }

    #profile_name{
        font-size: 50px;
        text-align: center;
        z-index: 2;
        top: 40%;
        border-radius: 0 0 20px 20px;
        padding: 15px 0;
        width: 99%;
        left: 0;
    }

    #profile_text{
        opacity: 0;
    }

    #intro{
        font-size: 20px;
        left: 0;
        margin: 5% 5%;
        width: 80%;
        height: 36%;
        overflow: hidden;
    }
}