* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #27444D 0%, #FFFFFF 100%);
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

main h1 {
    font-size: 2rem;
    color: white;
}

footer {
    padding: 15px;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

footer a:hover {
    text-decoration: underline;
}

#contacts {
    margin-bottom: 15px;
}