* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #D9E0EE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#card-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.outercard {
    width: 350px;
    background-color: white;
    padding: 10px;
    border-radius: 24px;
}

.innercard {
    background-color: antiquewhite;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chipsection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.chip {
    background-color: #ffd2b4;
    color: #0e0d0b;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    width: fit-content;
}

.button {
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px 0;
}

.icon {
    width: 24px;
    height: 24px;
    background-color: #f6f6f6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 10px;
}