body, html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

p {
    margin-top: 7px;
    margin-bottom: 7px;
}

.logo img {
    max-height: 70px;
}

.logo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    margin-top: 25px;
}

.contact {
    text-align: center;
    margin-top: 30px;
}

.contact h2 {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    font-weight: bold;
}

a:link, a:visited, a:active, a:hover {
    color: #42b1e6;
    transition: color 0.3s;
}

a:active, a:hover {
    outline: 0;
    text-decoration: underline;
}