:root {
    --cellWidth: 193px;
    --cellHeight: 200px;
    --white: #fff;
    --dimmedWhite: rgba(255, 255, 255, 0.15);
    --beige: #F0EFEC;
    --blue: #3A74BD;
    --bgBlue: #1653A5;
    --lightGray: #F2F2F2;
    --gray: #4f4f4f;
    --gray3: #828282;
    --brown: #A2A2A2;
    --orange: #FF8552;

    --animTime: .4s;
}
body {
    background-color: var(--bgBlue);
}
a {
    text-decoration: none;
}
p {
    margin: 0;
}
input, textarea {
    font-family: 'Inter', sans-serif !important;
}
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder,
input::placeholder {
    color: var(--white);
    opacity: 0.55;
}
i, em {
    font-family: 'Playfair Display', serif !important;
    position: relative;
    top: -0.01em;
    font-size: 1.01em;
}
.appearing {
    opacity: 0;
}
.appearing.appear {
    animation: appear var(--animTime) ease 2s forwards;
}
@keyframes appear {
    from { opacity: 0 }
    to { opacity: 1 }
}

@media screen and (max-width: 1200px) {
    :root {
        --cellWidth: 157px;
        --cellHeight: 163px;
    }
}
@media screen and (max-width: 980px) {
    :root {
        --cellWidth: 103px;
        --cellHeight: 107px;
    }
}
@media screen and (max-width: 639px) {
    :root {
        --cellWidth: 115px;
        --cellHeight: 119px;
    }
}
@media screen and (max-width: 480px) {
    :root {
        --cellWidth: 150px;
        --cellHeight: 155px;
    }
}