.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: -o-linear-gradient(top, white, black);
    background: linear-gradient(to bottom, white, black);
}
*{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: 'Yeon Sung', cursive;
}

body{
    margin: 0px;
    padding: 0px;
    color: white;
}

header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 60px;
    padding: 10px 20px;
    position: fixed;
    z-index: 99999;
    background: #974fac;
}

header a{
    font-size: 1.3rem;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

main .hero{
    width: 100%;
    min-height: 80vh;
    background: #974fac;
    -webkit-clip-path: circle(100.0% at 00% 10%);
            clip-path: circle(100.0% at 00% 10%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 20px;
}

main .hero h1{
    margin: 0;
    padding: 0;
}

main .hero a{
    color: white;
    text-decoration: none;
}

main .hero a i{
    font-size: 1.3rem;
}

main #upload{
    color: black;
    text-align: center;
    padding: 10px 20px;
}

#upload .main-logo{
    font-size: 3rem;
}

#upload .group input{
    display: none;
}

.group label div{
    width: 100%;
    height: 160px;
    background: #e2e2e2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.label-logo{
    font-size: 5rem;
    color: gray;
}

#upload form button{
    width: 100%;
    height: 40px;
    background: #974fac;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    color: white;
}

.information{
    color: black;
    padding: 10px 20px;
}

footer{
    background: black;
    padding: 10px 20px;
}
footer h1{
    margin-bottom: 0;
}

footer p{
    margin-top: 0;    
}


@media only screen and (min-width: 768px){
    main .hero{
        min-height: 60vh;
        -webkit-clip-path: circle(100.0% at 20% -10%);
                clip-path: circle(100.0% at 20% -10%);
    }
}

@media only screen and (min-width: 1024px){
    main .hero{
        min-height: 70vh;
        -webkit-clip-path: ellipse(94% 79% at 10% 14%);
                clip-path: ellipse(94% 79% at 10% 14%)
    }

    #upload{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    #upload form{
        width: 30%;
    }
}