@import url(root.css);

main {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

main section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 60px;
    margin-right: 20px;
    margin-top: 20px;
    box-sizing: border-box;
    background-color: transparent;
}

main section .content_box {
    border-radius: 0px 0px 10px 10px;
    padding: 14px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    gap: 12px;
}

main section .title_box {
    border-radius: 10px 10px 0px 0px;
    padding: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--accent);
    box-sizing: border-box;
    color: #fff;
    padding-left: 14px;
    min-height: 80px;
    max-height: 80px;
}

main section .title_box div {
    padding-left: 0;
    margin-left: 0;
    background-color: #fff;
    border: 3px solid #fff;
    margin-bottom: 75px;
    margin-left: -40px;
    border-radius: 50%;
    margin-right: 20px;
    min-height: 120px;
    max-height: 120px;
    aspect-ratio: 1/1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}