/* Section CSS */
#personal_info {
    background-color: #FAFAFA;
    box-shadow: 0 0 10px 1px #263238;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

#personal_info article {
    padding: 0 10px 0 10px;
}

#personal_info .info-title-label {
    font-size: 32px;
    background-color: #E65100;
    color: white;
    padding: 0 20px 0 20px;
    height: 50px;
    display: block;
    box-shadow: 0 1px 3px 1px #BF360C;
}


.big-title-label {
    font-size: 46px;
    height: 70px;
}

.big-title-label:after {
    content: "";
    border-bottom: 5px solid #263238;
    width: 100%;
    display: block;
    position: relative;
    bottom: 10%;
}

.middle-title-label {
    font-size: 32px;
    border-radius: 25px;
    height: 50px;
}


.middle-title-label:after {
    content: "";
    border-bottom: 3px solid #263238;
    width: 100%;
    display: block;
    position: relative;
    bottom: 10%;
}

.small-title-label {
    font-size: 26px;
    border-radius: 20px;
    width: initial !important;
}

.subject {
    margin: 5px;
    display: block;
    width: max-content;
}

.content {
    overflow: auto;
}

.content-image {
    float: left;
    width: 20%;
    margin-right: 20px;
    margin-top: 10px;
}

.content-text {
    float: right;
    width: calc(80% - 20px);
}

.badge {
    background-color: black;
    color: white;
    padding: 5px 10px 5px 10px;
    border-radius: 3px;
}

a .badge {
    background-color: #0D47A1;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    background-color: #AED581;
    margin-top: 0;
    padding-top: 0;
}


#containner {
    background-color: white;
    float: left;
    box-shadow: 0 0 50px #1B5E20;
    padding: 20px;
}