* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.transparent-style{
    background-color: rgba(255, 255, 255, .4);
}

.card-container {
    width: auto;
    height: auto;
    background-color: rgba(255, 255, 255, .4);
    border-radius: 10px;
    box-shadow: 0px 3px 10 px rgba(255, 255, 255, .4);
    display: flex;
    margin: auto;
    margin-top: 10px;
}

.image-container {
    width: 40%;
}

.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
}

.text-container {
    width: 100%;
}

h2 {
    color: #754285;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}