@charset "ut-8";

body {
    margin: 0;
padding: 0;
    font-family: 'Lato', sans-serif;
}

a {
    text-decoration: none;
}

.all {
    width: 100vw;
    height: 100vh;
    display: table;
    min-height: 500px;
}

.content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    margin: 0 20px;
}

.logo-img img{
    width: 320px;
    height: auto;
    margin-bottom: 10px;
    padding-bottom: 30px;
    border-bottom: 1px solid #0f5d9c;
}

h1 {
    font-size: 32px;
    color: #0f5d9c;
    font-weight: 700;
}

h2 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #0f5d9c;
}

.content a {
    display: block;
    padding: 20px 5px 20px 5px;
    border: 1px solid #0f5d9c;
    width: 200px;
    margin: 0 auto;
    text-decoration: none;
    color: #0f5d9c;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.content a:hover {
    background-color: #0f5d9c;
    color: white;
    cursor: pointer;
}

.fixed {
    position: fixed;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    background-color: #0f5d9c;
    width: 100%;

}

.fixed a {
    color: white;
}

.fixed a:hover {
    text-decoration: underline;
    cursor: pointer;
}