@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 0;
  margin: 0;
  color: #FEF3E2;
}
body{
    background-color: #606676;
}

.wrapper{
    display: flex;
    width: 80%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;

    .left{
        width: 100%;
        background-color: #708871;
        border-left: 1px solid;
        
        .image{
            display: flex;
            justify-content: center;
            margin-top: 20px;
            img{
                border-radius: 50%;
            }
        }

        .personal{
            text-align: center;
            margin-top: 50px;
            h2{
                margin-bottom: 20px;
                border: 1px solid;
                width: 60%;
                padding: 5px;
                border-radius: 10px;
                margin-left: auto;
                margin-right: auto;
            }
            p{
                font-size: 20px;
                margin-left: auto;
                margin-right: auto;
                width: 80%;
            }
        }

        .skill{
            
            margin-top: 50px;
            
            h2{
                margin-bottom: 20px;
                border: 1px solid;
                width: 40%;
                padding: 5px;
                border-radius: 10px;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }

            .bar{
                display: flex;
                margin-bottom: 20px;
                margin-left: 50px;
                align-items: center;
                
                
                .info{
                    width: 20%;
                    img{
                        width: 50px;
                    }
                }

                .progress{
                    width: 60%;
                    padding: 5px;
                    border-radius: 10px;
                    border: 1px solid ;

                    .ps{
                        background-color: #BEC6A0;
                        width: 65%;
                        padding: 5px;
                        border-radius: 8px;
                        text-align: right;
                        color: #606676;
                        font-weight: 600;
                    }
                    .ai{
                        background-color: #BEC6A0;
                        width: 80%;
                        padding: 5px;
                        border-radius: 8px;
                        text-align: right;
                        color: #606676;
                        font-weight: 600;
                    }
                    .id{
                        background-color: #BEC6A0;
                        width: 70%;
                        padding: 5px;
                        border-radius: 8px;
                        text-align: right;
                        color: #606676;
                        font-weight: 600;
                    }
                    .pr{
                        background-color: #BEC6A0;
                        width: 75%;
                        padding: 5px;
                        border-radius: 8px;
                        text-align: right;
                        color: #606676;
                        font-weight: 600;
                    }
                    .dw{
                        background-color: #BEC6A0;
                        width: 85%;
                        padding: 5px;
                        border-radius: 8px;
                        text-align: right;
                        color: #606676;
                        font-weight: 600;
                    }
                }
            }
        }
        .contact{
            margin-top: 50px;
            text-align: center;
            h2{
                border: 1px solid;
                width: 40%;
                padding: 5px;
                border-radius: 10px;
                margin-left: auto;
                margin-right: auto;
            }
            h3{
                margin-top: 20px;
            }
            p{
                font-size: 20px;
            }
        }

    }

    .right{
        width: 100%;
        border-right: 1px solid;

        .name{
            margin-top: 50px;
            margin-left: 50px;
            font-size: 40px;
            font-weight: 700;
        }
        .pos{
            margin-left: 50px;
            margin-top: 10px;
            font-size: 28px;
            font-weight: 600;
        }

        .achievement{
            margin-top: 50px;
            
            h2{
                border: 1px solid;
                border-radius: 10px;
                padding: 5px;
                text-align: center;
                width: 50%;
                margin-left: auto;
                margin-right: auto;

            }
            ul{
                list-style-position: inside;
                font-size: 20px;
                margin-left: 50px;
                li{
                    margin-top: 15px;
                    span{
                        font-weight: 600;
                    }
                }
            }
        }
        .education{
            margin-top: 50px;
            h2{
                border: 1px solid;
                border-radius: 10px;
                padding: 5px;
                text-align: center;
                width: 50%;
                margin-left: auto;
                margin-right: auto;
            }
            .uni{
                margin-top: 10px;
                margin-left: 50px;
                h3{
                    margin-bottom: 5px;
                }
                p{
                    font-size: 20px;
                    margin-bottom: 5px;
                    margin-left: 10px;
                }
            }
            .shs{
                margin-top: 10px;
                margin-left: 50px;
                h3{
                    margin-bottom: 5px;
                }
                p{
                    font-size: 20px;
                    margin-bottom: 5px;
                    margin-left: 10px;
                }
            }
        }
        .exp{
            margin-top: 50px;
            h2{
                margin-bottom: 10px;
                border: 1px solid;
                border-radius: 10px;
                padding: 5px;
                text-align: center;
                width: 65%;
                margin-left: auto;
                margin-right: auto;
            
            }
            ul{
                list-style-position: inside;
                font-size: 20px;
                margin-left: 50px;
                p{
                    margin-bottom: 7px;
                    margin-top: 10px;
                    font-weight: 600;
                }
            }
        }
        .project{
            margin-top: 50px;
            h2{
                margin-bottom: 10px;
                border: 1px solid;
                border-radius: 10px;
                padding: 5px;
                text-align: center;
                width: 50%;
                margin-left: auto;
                margin-right: auto;
            
            }
            ul{
                margin-left: 50px;
                list-style-position: inside;
                margin-bottom: 50px;
                font-size: 20px;
                p{
                    margin-top: 10px;
                    margin-bottom: 7px;
                }
                li{
                    line-height: 25px;
                }
            }
        }
    }
}
