.small-circle {
  height: 32px;
  width: 32px;
  background-color: #ffffff;
  border-radius: 50%;
}

.large-circle {
    height: 80px;
    width: 80px;
    background-color: #ffffff;
    border-radius: 50%;
}

.header {
    background-color: #FFA54A;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 8px 12px 8px;
}

.left {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
}

.right{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
}

.content {
    display: flex;
    flex-direction: column;
    margin: 32px 80px 32px 80px;
    gap: 32px;
}

.section1 {
    background-color: #21D099;
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    gap: 8px 16px;
    width: fit-content;
    height: fit-content;
}

.group1 {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.section2 {
    background-color: #D881D5;
    display: flex;
    flex-direction: column;
    padding: 16px;
    height: 256px;
    width:100%;
    align-items: center;
}

.section3 {
    background-color: #D881D5;
    display: flex;
    flex-direction: column;
    padding: 16px;
    height: 256px;
    width:100%;
    align-items: center;
    justify-content: center;
}

.group2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section4 {
    background-color: #72AAF5;
    display: flex;
    flex-direction: row;
    padding: 8px;
    height: fit-content;
    width:100%;
    align-items: center;
    justify-content: center;
}

.section5 {
    background-color: #72AAF5;
    display: flex;
    flex-direction: row;
    padding: 8px;
    gap:auto;
    height: fit-content;
    width:100%;
    align-items: center;
    justify-content: space-around;
}

.section6 {
    background-color: #72AAF5;
    display: flex;
    flex-direction: row;
    padding: 8px;
    gap:auto;
    height: fit-content;
    width:100%;
    align-items: center;
    justify-content: space-between;
}