*{
    box-sizing: border-box;
}
html {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}
body{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
#body{
    background-image: linear-gradient( 15deg,  #ff2a78 3.5%, #9150fb 96.6% );
    position: relative;
    overflow: hidden;
}
#body:before, #body:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}
#body.gradient2:before{
    background-image: linear-gradient( 135deg,  #00d8e9 2%, rgba(255,255,255,0) 33.3%, rgba(255,255,255,0) 107% );
}
#body.gradient2:after{
    background-image: linear-gradient( -35deg,  #ffc200 2%, rgba(255,255,255,0) 33.3%, rgba(255,255,255,0) 107% );
}
#body.gradient1{
    background-image: linear-gradient(297deg, #16bade, #0094ff 51%, #0006bf), linear-gradient(#1e81f5, #1e81f5);
}
.container{
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}
.container:before{
    content: '';
    height: 400px;
    width: 400px;
    border: 25px solid rgba(255,255,255,1);
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(30px);
}
.container:after{
    content: '';
    z-index: -1;
    height: 100px;
    width: 100px;
    background-color: rgba(255,255,255,1);
    position: absolute;
    top: 16%;
    right: 16%;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(30px);
}
header{
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
}
.top-nav{
    list-style: none;
    display: flex;
}
.top-nav a{
    color: #fff;
    text-decoration: none;
    display: block;
    position: relative;
}
.top-nav a:before{
    position: absolute;
    content: '';
    height: 1px;
    width: 0;
    background-color: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 200ms ease;
}
.top-nav li:first-child a{
    margin-right: 25px;
}
.top-nav a:hover:before{
    width: 80%;
}
.logo{
    height: 55px;
}
main{
    display: flex;
    -ms-flex-align: end!important;
    align-items: flex-end!important;
    flex: 1;
}
section{
    display: flex;
}
.welcome-image{
    width: 360px;
    display: flex;
}
.welcome-text{
    padding-left: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.welcome-image img{
    display: block;
    width: 100%;
    height: auto;
}
.store-links a{
    display: inline-block;
}
.store-links img{
    display: block;
    height: 44px;
}
h1{
    margin: 0;
    color: #ffffff;
    line-height: 1.1;
    font-size: 28px;
    letter-spacing: -0.1px;
}
p{
    margin: 0 0 35px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    padding-top: 27px;
    opacity: 0.8;
}
.footer{
    list-style: none;
    display: flex;
    font-size: 13px;
    padding: 0;
    font-weight: bold;
    color: #ffffff;
    opacity: .9;
    margin: 0;
}
.footer .copy{
    padding: 20px 0;
}
.footer a{
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: transform 200ms;
    padding: 20px 0;
    margin-right: 20px;
    position: relative;
}
.footer a:before{
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: all 200ms;
}
.footer a:hover{
    transform: translateY(-5px);
}
.footer a:hover:before{
    width: 80%;
}
@media screen and (max-width: 480px) {
    header{
        padding: 25px 15px 0 15px;
    }
    #body{
        overflow: auto;
    }
    main{
        display: flex;
        flex: unset;
    }
    section{
        flex-direction: column;
    }
    .welcome-text{
        padding: 0 15px;
        flex: unset;
    }
    .welcome-image{
        width: 200px;
        margin: 0 auto;
    }
    .container{
        justify-content: start;
        height: auto;
    }
    h1{
        font-size: 22px;
        text-align: center;
        padding-top: 25px;
    }
    p{
        text-align: center;
    }
    .store-links{
        text-align: center;
    }
    .footer{
        justify-content: center;
    }
    .container:before{
        height: 250px;
        width: 250px;
    }
    .container:after{
        width: 50px;
        height: 50px;
        right: 8%;
        top: 24%;
    }
}
