.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.card {
    border-style: solid;
    border-width: 0px 0px 15px 0px;
    border-color: #FF0000;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.5);
    margin: 10px 10px 10px 10px;
    --e-column-margin-right: 10px;
    --e-column-margin-left: 10px;
    padding: 30px 30px 30px 30px;
    border-radius: 5px 5px 5px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
}

.title {
    text-align: center;
}

@media screen and (max-width: 800px) {
    .main {
        display: flex;
        flex-direction: column;
        height: initial;
    }
}