body{
    margin: 0;
    font-family: 'Segoe UI';
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    padding: 2rem;
    }
    .container{
        background-color: white;
        width: 700px;
        box-shadow: 0 4px 20px lightgray;
        border-radius: 12px;
        padding: 2rem 3rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    ht,h2,h3{
        color: black;
    }
    .header{
        text-align: center;
        margin-bottom: 2rem;
    }
    .pic{
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid yellow;
        margin-bottom: 1rem;
    }
    .info{
        text-align: center;
        margin-bottom: 2rem;
        font-size: 1rem;
        color: rgb(129, 23, 23);
    }
    .section{
        margin-bottom: 1.5rem;
    }
    .section h2{
        border-bottom: 2rem solid rgb(100, 100, 176);
        padding-bottom: 0.3rem;
        margin-bottom: 1rem;
    }
    .skill-list{
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    .skill{
        background-color: rgb(225, 225, 230);
        color: rgba(28, 2, 2, 0.5);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s case;
    }
    .skill:hover{
        background-color: rgb(129, 207, 241);
    }
    .experience, .education {
        list-style-type:none ;
        padding-left: 0;
    }
    .experience, .education li{
        margin-bottom: 1rem;
    }
    .experience, .education li h3{
        margin: 0;
        font-size: 1.1rem;
        color: rgb(68, 53, 53);
    }
    .experience li span, .education li span{
        font-size: 0.9rem;
        color:blue;
    }
    button{
        display: block;
        margin: 1rem auto 0;
        background-color: rgb(60, 60, 229);
        color: rgb(252, 254, 255);
        border: none;
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        border-radius: 25px;
        cursor: pointer;
        transition: background-color 0.3s case;
        user-select: none;
    }
    button:hover{
        background-color: green;
    }
    .hidden{
        display: none;
    }
    fieldset{
        margin-top: 10px;
        margin-bottom: 10px;
    }
    dt{
        font-weight: bold;
    }