@charset "utf-8";
@import url("https://font.elice.io/css?family=Elice+DX+Neolli");
@font-face {
    font-family: 'IM_Hyemin-Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2106@1.1/IM_Hyemin-Bold.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}


html{
    min-height: 100%;
    width: 100%;
    background-color: navy;
}

body{
    background-color: navy;
    width: 100%;
}

a{
    text-decoration: none;
}

pre{word-wrap: break-word;white-space: pre-wrap;white-space: -moz-pre-wrap;white-space: -pre-wrap;white-space: -o-pre-wrap;word-break:break-all;}

/* 이 아래부터 코드 */

#wrap{
    display: block;
    position:relative;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    margin-top: 10%;
    margin-bottom: 5%;
    border-radius: 30px;
}


#header{
    display: block;
    position: relative;
    width: fit-content;
    height:fit-content;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    margin-bottom: 0;
    border-radius: 30px;
}

.profileimage{
    display: block;
    position: relative;
    width: 40%;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.name{
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color:black;
    font-family: 'IM_Hyemin-Bold';
    margin-bottom: 20px;
}

.intro{
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color:navy;
    font-family: 'IM_Hyemin-Bold';
}

#middle{
    margin-top: 0;
    display: block;
    position: relative;
    height:fit-content;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border-radius: 30px;
}

.profile, .info{
    font-size: 12px;
    line-height: 180%;
    font-family: 'Elice DX Neolli';
    font-style: normal;
    font-weight: 300;
}

@media(min-width:767px){
    h1{
        font-weight: bold;
      font-size: 20px;  
    }
    #wrap{
        width: 770px;
        height: 700px;
        background-color: navy;
        margin-left: auto;
        margin-right: auto;
        border-radius: 30px;
    }
    #header{
        float: left;
        width: 150px;
        height: 300px;
        margin: 0;
        padding: 15px;
        border-radius: 30px 0 0 30px;
        font-size: 15px;
    }
    #middle{
        float: right;
        width: 559px;
        height: 300px;
        margin: 0;
        padding: 15px;
        border-radius: 0 30px 30px 0;
    }

    .profileimage{
        width: 70%;
        padding: 0%;
    }

    .profile, .info{
        font-size: 10px;
    }

}