html, body {
    height: 100vh;
}

body {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;

    background: rgb(0,224,196);
    background: -moz-linear-gradient(90deg, rgba(0,224,196,1) 0%, rgba(1,181,200,1) 37%, rgba(0,163,181,1) 77%, rgba(3,128,185,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,224,196,1) 0%, rgba(1,181,200,1) 37%, rgba(0,163,181,1) 77%, rgba(3,128,185,1) 100%);
    background: linear-gradient(90deg, rgba(0,224,196,1) 0%, rgba(1,181,200,1) 37%, rgba(0,163,181,1) 77%, rgba(3,128,185,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00e0c4",endColorstr="#0380b9",GradientType=1);

    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

h1 {
    font-size: 40pt;
}


.main {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
