html, body {
    margin: 0 auto;
    background-color: #fcfcfc;
    color: #2a2a2a;
    font-family: "Libre Franklin";
    font-size: 13pt;
    font-weight: 400;
    line-height: 1.5;
}

html, body, .container {
    height: 100%;
    width: 100%;
}

a {
    color: #C9283E;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container div {
    max-width: 600px;
    width: 90%;
}

div.animate {
    -moz-animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -moz-animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -moz-animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fade;
    animation-name: fade;
}

@-webkit-keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
 
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 800px)
  and (-webkit-min-device-pixel-ratio: 2) {

    html {
        font-size: 24pt;
    }
}

