@font-face {
    font-family: 'NeutrifPro';
    src: url('fonts/NeutrifPro-Regular/NeutrifPro-Regular.eot?#iefix') format('embedded-opentype'),  url('fonts/NeutrifPro-Regular/NeutrifPro-Regular.otf')  format('opentype'),
            url('fonts/NeutrifPro-Regular/NeutrifPro-Regular.woff') format('woff'), url('fonts/NeutrifPro-Regular/NeutrifPro-Regular.ttf')  format('truetype'), url('fonts/NeutrifPro-Regular/NeutrifPro-Regular.svg#NeutrifPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NeutrifPro';
    src: url('fonts/NeutrifPro-Bold/NeutrifPro-Bold.eot?#iefix') format('embedded-opentype'),  url('fonts/NeutrifPro-Bold/NeutrifPro-Bold.otf')  format('opentype'),
            url('fonts/NeutrifPro-Bold/NeutrifPro-Bold.woff') format('woff'), url('fonts/NeutrifPro-Bold/NeutrifPro-Bold.ttf')  format('truetype'), url('fonts/NeutrifPro-Bold/NeutrifPro-Bold.svg#NeutrifPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

html,body {
    margin: 0;
    padding: 0;
    font-family: "NeutrifPro";
    min-height: 100vh;
    position: relative;
    background-color: rgb(247,247,247);
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.inner-page {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ea0021;
    width: 100%;
}

h1 {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 3.5em;
}


h1,h3 {
    margin: 0;
    line-height: 1;
}

h3 {
    letter-spacing: 1px;
}

.top-tag {
    margin-top: 0;
    margin-bottom: 20px;
}

/* .main-text h3 {
    font-size: 80%;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: normal;
} */
.main-text h3 {
    /* font-size: 80%; */
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    margin-top: 10px;
    font-weight: normal;
}

.social-update {
    /* margin-top: 50px; */
    color: dimgrey;
    margin-bottom: 30px;
}

.social-update h3 {
    font-weight: normal;
}

a {
    color: #ea0021;
    text-decoration: none;
    position: relative;
}

a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 0;
    left: 0;
    height: 2px;
    background-color: #ea0021;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}

a:hover:after {
    width: 100%;
}

.inner-footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}

.contact-link {
    color: dimgrey;
    letter-spacing: 1px;
}

@media all and (max-width: 500px) {
    h1 {
        font-size: 2em;
    }
    
    .main-text,
    .inner-footer {
        padding: 0 20px;
    }
}