body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    flex-direction: column;
}

.expandable-card-container {
    text-align: center;
}

.expand-card {
    text-align: left;
    width: 243px;
    max-width: 100%;
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, height 0.3s ease;
    position: relative;
    background-color: #2DA771;
    height: 60px;
    font-size: 20px;
    font-weight: 900;
    overflow: hidden;
}
.expand-card p {
    opacity: 0;
}

.expand-card:hover {
    text-align: left;
    top: 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    color: black;
    background-color: white;
    height: 124px;
}
.expand-card:hover p {
    opacity: 100;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
}

