@import url('https://fonts.googleapis.com/css?family=Montserrat:200,400&display=swap');

html {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4vw;
    font-weight: 200;
    height: 100%;
    background-color: #031c45;
    background-image: linear-gradient(to bottom right,#031c45, #470ff4);
    background-size: 100%;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    cursor: default;
}
body {
    margin: 5vw;
    padding: 0;
}
main {
    background-image: url('logo.png');
    background-size: 10vw;
    background-repeat: no-repeat;
    background-position: top left;
    margin: 0;
}
h1 {
    font-size: 1.4vw;
    font-weight: 200;
    margin: 0;
    padding: 3vw 0 0;
}
p {
    text-align: right;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 5vw;
    right: 5vw;
}
a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}


@media only screen and (max-width: 600px)
{
    html {
        font-size: 4vw;
    }
    body {
        margin: 10vw;
        text-align: center;
    }
    main {
        min-height: 40vw;
        background-size: 40vw;
        background-position: top center;
    }
    h1 {
        font-size: 6vw;
        line-height: 10vw;
        padding: 20vw 0 0;
    }
    p {
        width: 80vw;
        bottom: 10vw;
        right: 10vw;
        text-align: center;
    }
}