* {
    padding: 0;
    margin: 0;
    font-family: Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100vw;
}
h1 {
    font-style: oblique;
    margin-left: 1rem;
    font-weight: 400;
    font-size: 30px;
}
#alphaBox {
    max-width: 1000px;
    max-height: 600px;
    margin: auto;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}
.content {
    flex: 1;
}
.row {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
}
.header {
    display: inline-flex;
    background-color: rgb(255, 255, 255);
    height: 2rem;
}
.header img {
    height: 2rem;
}
.persian {
    text-align: right;
    font-size: 2em;
    position: absolute;
    right: 2rem;
}
.footer {
    color: green;
    text-align: center;
    padding: 5px;
    font-size: 14px;
    margin-top: 1.5rem;
    font-style: oblique;
}
#mainMessage {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    height: 16vh;
    max-width: 100vw;
    background-color: brown;
    color: white;
    font-size: 13vw;
    padding: 1rem;
}
.slot{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.smol {
    font-size: 18px;
}
.clickBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2.5px;
    padding: 5px;
    padding-bottom: 13px;
    width: 90px;
    font-size: 8vmin;
    border-radius: 7px;
    box-shadow: 0 2px 3px rgba(0,0,0,.16), 0 2px 3px rgba(110,80,20,.4),
    inset 0 -2px 3px 1px rgba(139,66,8,1),
    inset 0 -1px 1px 3px rgba(250,227,133,1);
    border: 1px solid #a55d07; 
    color: rgb(82, 33, 3);
    text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
    cursor: pointer;
    transition: all .2s ease-in-out;
    background-size: 100% 100%;
    background-position:center;
    background-image: linear-gradient(160deg, #e47d2a, #d8a43c, #fef1a2, #c7732f);
}
.clickBox:focus,
.clickBox:hover {
  background-size: 150% 150%;
  box-shadow: 0 4px 5px rgba(0,0,0,0.19), 0 4px 5px rgba(0,0,0,0.23),
                inset 0 -2px 5px 1px #bb8a20,
                inset 0 -1px 1px 3px rgb(255, 240, 179);
  border: 1px solid rgba(238, 131, 0, 0.6);
  color: rgba(165, 60, 0, 0.8);
}
.letter {
    margin: auto;
}
.english {
    display: none;
}
@media only screen and (min-width: 800px) {
    .english {
        display: block;
    }
    #mainMessage {
        font-size: 120px;
    }
    .clickBox {
        margin: 5px;
        border-radius: 10px;
        padding-bottom: 19px;
    }
}