@charset "utf-8";
/* CSS Document */
body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color:#CBDBBE;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.resume {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.sidebar {
    background-color: #afd797;
    padding: 20px;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.separator {
    width: 1px;
    background-color: #C2C2C2;
    margin: 20px 0;
}

.profile-pic img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #7B9360;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
	color: #2d3c03;
    margin: 0;
}

.title {
    font-size: 16px;
    color: #2d3c03;
    margin-bottom: 20px;
}

.section {
    margin-bottom: 20px;
    width: 100%;
}

.section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #7B9360;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.section ul {
    list-style: none;
    padding: 0;
}

.section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
	letter-spacing: 1px;
}

.section li .icon img {
   font-size: 30px; 
    width: 1em;     
    height: 1em;     
    display: inline-block;
    line-height: 1;
	padding: 12px;
}
.section .language .percent {
    display: block;
    height: 6px;
    background-color: #7cc10c; 
    width: 100%; 
    position: relative;
	margin-top: 5px;
}
.section .language .percent div{
    height: 100%;
    background-color: #4e6328; 
    top: 0;
	left: 0;
    position:absolute;
}

.main-content {
    padding: 20px;
    width: 70%;
    display: flex;
    flex-direction: column;
	background: #fffeeb;
}

.main-content .section {
    margin-bottom: 30px;
}

.main-content .section h2 {
	background: #afd797;
    font-size: 22px;
    color:#FFFFFF;
	border: none;          
    padding: 0;             
    margin: 0;             
    box-sizing: border-box;  
    width: 50%;
	display:flex;
    justify-content: center; 
    align-items: center;
	position: relative;
}
.section h2::after {
    content: "";
    display: block;
    width: 80%;             
    height: 3px;              
    background-color: #afd797; 
    position: absolute;                     
    top: 50%;                  
  	left: calc(100% + 10px);
}
 .section h3{
	font-size: 16px;
	color:#FFFFFF;
	background: #62814f;
    margin-bottom: 10px;
    display: flex;           
    justify-content: center; 
    align-items: center;     
    height: 30px;
}
.school {
    margin-bottom: 10px;
	
}

 .school {
	display: flex;
    margin: 20px 0;
    
}

 .school h4 {
    font-size: 16px;
    margin: 5px 0;
    color: #2d3c03;
	min-width: 150px;
}
.school h5{
	margin: 5px 0;
	color: #2d3c03;
	font-size: 16px;
}
.school ul {
    margin:5px 40px;
    list-style: disc;
    padding-left: 20px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px;
    padding: 20px;
    list-style: none;
}

.skills li {
    background-color: #afd797;
    padding: 25px 25px;
	width: 45px;
    height: 45px;
    border-radius: 50%;
	border: 2px solid #62814f;
    margin: 50px 30px;
    font-size: 24px;
    display: flex;
	flex-direction: column;
    align-items: center;
	text-align: center;
	color: aliceblue;
}



.skills li span {
	width: 150px;
	display: block; 
    margin-top: 50px; 
    font-size: 12px;
    color: #3a4811;
}

@media (max-width: 768px) {
    .resume {
        flex-direction: column;
    }

    .sidebar, .main-content {
        width: 100%;
    }

    .separator {
        width: 100%;
        height: 1px;
        background-color: #C2C2C2;
        margin: 0;
    }

    .sidebar {
        align-items: flex-start;
        text-align: left;
    }

    .profile-pic {
        text-align: center;
        width: 100%;
    }

    .profile-pic img {
        margin: auto;
    }
}
