﻿/*Extra small devices (portrait phones, less than 576px)*/
@media (min-width: 575.98px) {
    body{
        font-size: 50px;
    }
}

/* Small devices (landscape phones, less than 768px)*/
@media (min-width: 767.98px) {
    body {
        font-size: 75px;
    }
}

/* Medium devices (tablets, less than 992px)*/
@media (min-width: 991.98px) {
    body {
        font-size: 100px;
    }
}

/* Large devices (desktops, less than 1200px)*/
@media (min-width: 1199.98px) {
    body {
        font-size: 125px;
    }
}

.vertical-center {
    min-height: 100%; /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
}

.Baskerville {
    font-family: Baskerville, "Baskerville Old Face", "Hoefler Text", Garamond, "Times New Roman", serif;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
}

.Blue {
    color: #4F81BD
}

.Grey {
    color: #85929E
}