*{
    margin: 0;
    padding: 0;
}

.page_body{
    background: #3171de;
    overflow: hidden;
}
.page_header{
    font-family: "Lexend", "Lexend Fallback";
    color: white;
    width: 100%;
}
.page_header div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw;
    font-size: 1.3vw;
}
.page_header div span{
    cursor: pointer;
}
.card_holder{
    margin-top: 8vw;
    display: flex;
    justify-content: center;
}
.card{
    font-family: "Lexend", "Lexend Fallback";
    position: absolute;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    border: 1px solid black;
    padding: 7vw 3vw;
    border-radius: 2vw;
    transform-style: preserve-3d;
    box-shadow: 0 0 19px rgba(0, 0, 0, 0.1);
    transition: 0.1s transform;
}
.card_back{
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    transform: translateZ(1px);
}
.card img{
    background-clip: border-box;
    width: 10vw;
}
.card_text{
    font-size: 1.3vw;
}
#c1{
    z-index: -1;
    margin-top: -14vw;
    position:absolute;
}
.next_card{
    cursor: pointer;
    position: absolute;
    left: 15vw;
    top: 23vw;
    font-size: 2vw;
}
.next_card div{
    display: flex;
    flex-direction: column;
    transition: 0.5s;
}
.next_card div .dash{
    margin-top: -2vw;
    margin-left: 2vw;
    transition: 0.5s;
}
.next_card:hover div .dash{
    margin-left: 1.1vw;
}
.next_card:hover div{
    margin-left: -1.1vw;
}

.show_me{
    cursor: pointer;
    position: absolute;
    right: 15vw;
    top: 23vw;
    font-size: 2vw;
}
.show_me div{
    display: flex;
    flex-direction: column;
    transition: 0.5s;
}
.show_me div .dash{
    margin-top: -2vw;
    margin-left: -1vw;
    transition: 0.5s;
}
.show_me:hover div .dash{
    margin-left: 0.1vw;
}
.show_me:hover div{
    margin-right: -1.1vw;
}
@keyframes gOut {
    0%{
        transform: perspective(1000px) scale3d(1, 1, 1);
    }
    100%{
        transform: perspective(1000px) rotateY(185deg) scale3d(1, 1, 1); margin-left: -150vw;
    }
}