body {
    background: #eee;
}

.card {
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #E1BEE7;
    transform: scaleY(1);
    transition: all 0.5s;
    transform-origin: bottom;
}

.card:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #8E24AA;
    transform: scaleY(0);
    transition: all 0.5s;
    transform-origin: bottom;
}

.card:hover::after {
    transform: scaleY(1);
}

.social-list {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin-top: 20px;
}

.social-list li {
    padding: 10px;
    color: #8E24AA;
    font-size: 24px;
}

.social-list li a {
    color: #8E24AA;
    transition: color 0.3s ease-in-out;
}

.social-list li a:hover {
    color: #5E1358;
}