@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
}

.embed_container {
    width: 300px;
    height: 439px;
    /* border: 1px solid grey; */
}
.card_container{
    width: 100%;
    height: 100%;
}

.embed_card{
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
    text-align: center;
}
.card_image{
    height: 42%;
    width: 100%;
    background-color: gainsboro;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.card_type{
    margin-top: 7%;
    color: #6e6eef;
    font-weight: 700;
    font-size: 13px;
}
.card_description {
    /* width: 60%; */
    margin: 4%;
    font-size: 21px;
    font-weight: 600;
}
.card_tag_container{
    display: flex;
    justify-content: space-evenly;
    position: absolute;
    width: 100%;
    margin-bottom: 6%;
    bottom: 0%;
}
.card_tag{
    border: 1.3px solid #e5e5e5;
    border-radius: 15px;
    padding: 3px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
}


.flipside_description {
    position: absolute;
    width: 75%;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    top: 6%;
    left: 11%;
}
.card_button_container {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 19%;
    bottom: 6%;
}
.card_button {
    background-color: #6c5ce7;
    margin: 5%;
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Montserrat';
    font-weight: 600;
}