
*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Raleway', sans-serif; /* 200 - 400 - 600 */
}

body {
    background: #006678;
    color: #ffffff;
    text-align: center;
    padding: 30vh 20px 20px 20px;
}

svg {
    width: 80px;
}

h1 {
    font-weight: 600;
    font-size: 42px;
    padding: 20px;
}
p {
    font-weight: 200;
    padding: 10px;
}
a {
    font-weight: 400;
    text-decoration: none;
    color: #ffffff;
}
a:hover {
    text-decoration: underline;
}