*{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}
body{
    background-color: #171B1D;
    color: white;
    display: grid;
    align-items: center;
}

header{
    text-align: center;
    margin-top: 2vh;
}
.sctCard {
    padding: 5vh 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    color: black;

}
.card{
    width: 65%;
    min-height: 50vh;
    background-color: #BEFFBE;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    box-shadow: 7px 0px 1px #8AEF8A;
    opacity: 1;

}
.card.translation{
    background-color: #8AEF8A;
    box-shadow: 7px 0px 1px #BEFFBE;
}


.text{
    display: block;
    width: 100%;
    flex-grow: 2;
    justify-content: center;
    align-content: center;
    text-align: center;
    font-size: clamp(20px, 7vw, 5.2rem);
}




.page{
    width: 100%;
    text-align: center;
    font-size: clamp(15px, 4vw, 1.5rem);
    padding-bottom: 5%;
}

.arrow{
    padding: 10% 4%; 
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
