* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background-color: white;
}

.container {
    color: #29352E;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button-container {
    display: flex;
    flex-direction: column;
}

button {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color : white;
    background-color: #83A190;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.list.active {
    max-height: 2000px;
    opacity: 1;
}

.items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: #83A190;
    padding-bottom: 10px;
    border-radius: 10px;
    gap: 50px;
}

.sub-text {
    font-weight: 500;
    font-size: 11px;
}

.el {
    color: #83A190;
}

.icon {
    width: 50px;
    border: solid 2px #83A190;
    border-radius: 50px;
    padding: 5px;
}

.footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.ayirac {
    margin-top: 20px;
    text-align: center;
    color: #83A190;
    font-size: 20px;
}

.ayirac1 {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    color: #83A190;
    font-size: 20px;
}