body {
    background-color: #DCDCDC;
    font-family: 'Roboto', sans-serif;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 1024px;
    /* min-width: 1024px; */
    min-height: 600px;
    height: 100%;
    background-color: white;
    border-radius: 5px;
    margin: 10px auto;
}

.aboutme {
    display: block;
    background-color: #66CDAA;
    width: 250px;
    min-height: 600px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-align: center;
}

.cases {
    display: block;
    width: 90%;
    min-width: 700px;
    padding-top: 30px;
    padding-bottom: 40px;
}

.cases > h3 {
    text-align: center;
    color: #4A5566;
    padding-bottom: 20px;
}

.cases #accordion {
    width: 80%;
    margin: 0 auto;
}

.aboutme h2 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-top: 35px;
}

.photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px white solid;
    margin-top: 15px;
}

.aboutme p {
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    margin-top: 15px;
    padding: 5px 10px;
}

ul {
    list-style-type: none;
}

.social {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    margin: 0;
    padding: 0;
}

.social a {
    width: 36px;
    height: 36px;
    display: block;
}

.social img {
    width: 35px;
    height: 35px;
    transition: .3s;
}

.social img:hover {
    width: 36px;
    height: 36px;
}

#accordion h3 {
    background-color: #66CDAA;
    color: white;
    padding: 10px 0px 10px 20px;
    /* border-radius: 5px; */
    margin-top: 5px;
    margin-bottom: 0;
    outline: none;
    cursor: pointer;
}

#accordion > div {
    background-color: #F0FFF0;
    padding: 10px 20px 20px 20px;
}

#accordion > div > p {
    color: #4A5566;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 10px;
}

#accordion > div > a {
    color: white;
    background-color: #66CDAA;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #66CDAA;
}

#accordion > div > a:hover {
    color: #66CDAA;
    background-color: white;
    border: 1px solid #66CDAA;
}

.cases-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0px 10px 0px 10px;
}

.cases-item {
    width: 380px;
    background: #66CDAA;
    text-align: center;
    padding-bottom: 20px;
    border-radius: 0px 20px;
}

.cases-item h2 {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
}

.cases-item img {
    width: 350px;
    border: 1px solid #FFFFFF;
}

.cases-item-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.cases-item a {
    color: #66CDAA;
    background-color: white;
    border: 1px solid #66CDAA;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 5px;
    transition: .2s;
}

.cases-item a:hover {
    color: white;
    background-color: #66CDAA;
    border: 1px solid #FFFFFF;
}