import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;600;800&display=swap');

/*#region Reset CSS*/
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}
body {
    line-height: 1;
}
menu, ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*#endregion*/

body, html, #wrapper{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}

#wrapper{
    display:table;
    background:rgb(63, 94, 251);
    background:-moz-radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    background:-webkit-radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    background:radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#3f5efb", endColorstr="#fc466b", GradientType=1);
}

#main{
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    position:relative;
    z-index:1;
    padding:0 10vw 0 10vw;
}

#main div, #main h1, #main img{
    margin:25px auto 25px auto;
}

#main::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0.25;
    z-index:-1;
    background:url('https://picsum.photos/1920/1080/?blur') no-repeat;
    background-size:cover;
}

h1{
    font-family:'Rubik', sans-serif;
    font-weight:600;
    font-size:4em;
    color:#FFF;
    margin:15px
}

h1 > span{
    font-weight:400;
}

sub{
    font-family:'Rubik', sans-serif;
    font-weight:300;
    font-size:1.5em;
    color:#FFF;
}

a{
    font-family:'Rubik', sans-serif;
    font-weight:400;
    font-size:1.5em;
    color:#FFF;
    display:block;
}

p > a{
    font-family:'Rubik', sans-serif;
    font-weight:400;
    font-size:1.5em;
    color:#FFF;
    text-decoration:none;
}

@media (max-width:575.98px){
    #main{width:80%;padding:0 5% 0 5%}
    h1{font-size:12vw}
    sub, a, p > a{font-size:4vw}
}
