*{font-family:'Arial';}
h1 {
    text-align: center;
    padding-top: 20px;
}
h6 {
    text-align: center;
}
body {
    background-color: #fae0b6;
    margin: auto;
}
#whitmanLogo {
    margin-left: 20px;
    mix-blend-mode: multiply;
}
#wordboxlabel {
    margin: auto;
}
#PrevNext {
    margin-top: 20px;
    margin-bottom: 20px;
}

#inputWords {
    /* font-family: 'Times New Roman', Times, serif; */
    height: 100px;
    font-size: 15px;
    font-weight: 400;
    padding-top: 20px;
    padding-left: 10px; 
}
#empty {
    height: 150px;
}
#directions {
    width: 500px;
    padding: 10px;
    padding-top: 0px;
    font-size: small;
}
.overflow-auto {
    width: 500px;
    height:100px;
    overflow: auto;
    text-overflow: ellipsis;
    border: solid lightgrey 1px;
    margin-bottom: 5%;
    border-radius: 5px;
    padding-top: 5px;
}
.maincontainer {
    width: 500px;
    height: 300px;
    /* margin-top: 50px; */
    margin: auto;
    padding-top: 20px;
    
}

.thecard {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    transform: none;
}

.front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-color: #ffe8b3;
    color: #333;
    text-align: center;
    border-radius: 20px;
    font-size: 35px;
    font-weight: bold;
    padding-top: 20%;
}

.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-color: #d4e4ff;
    color: #333;
    transform: rotateY(180deg);
    text-align: center;
    border-radius: 20px;
    font-size: 25px;
    padding-top: 20%;
}