body {
    margin: 0;
    font-family:Arial ,sans-serif;
    background-color: white ;
}


.container {
    display: flex;
    max-width: 1000px;
    margin: 30px auto;
    background-color: rgb(248, 246, 246);
}



aside {
    width: 32%;
    float: left;
    padding: 30px 20px;
    background-color: lightgray;
}

aside img {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius:20px;
    display: block;
    margin: 0 auto 20px;
}

aside h2 {
    font-size: 16px;
    border-bottom: 1px solid black;
    padding-bottom: 5px;
    margin-top: 25px;
}

aside p,aside li {
    font-size: 13px;
}

aside ul {
    padding-left: 18px;
}

main {
    width: 68%;
    padding: 30px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header h3 {
    margin: 5px 0 20px;
    color: gray;
}

section{
    margin-bottom: 25px;
}

 h2 {
    font-size: 18px;
    border-bottom: 2px solid lightgray;
    padding-bottom: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table th,table td {
    border-bottom: 1px solid lightgray;
    padding: 8px;
    text-align: left;
}

