*
{
    outline: 0;
    font-family: 'Roboto', sans-serif;
}

html
{
    margin: 0;
    padding: 0;
}

body
{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    color: #000;
    background: #333;
    background-image: url('/assets/img/forest-trees-night.jpg');
    background-position: left bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.wrap
{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 34, 51, 0.5);
}

.content
{
    width: 200px;
    padding: 50px;
    background: #fff;
    text-align: center;
}

img
{
    width: 200px;
}

h1
{
    margin: 0;
    padding: 50px 0 25px 0;
    font-weight: 900;
    color: #152233;
}

p
{
    margin: 0;
    padding: 25px 0 0 0;
    font-weight: 300;
    color: #666;
    border-top: 1px solid #eee;
}

a
{
    color: #4595dc;
    transition: color 0.2s linear;
}

a:hover
{
    color: #152233;
}