/* 
--------------------------
Fonts
--------------------------
 */
 @font-face {
    font-family: Fonseca;
    src: url(../font/Fonseca.woff2);
}

@import url("https://fonts.googleapis.com/css?family=Roboto:100i,300,400,500,700,900");


/* 
--------------------------
Text 
--------------------------
*/
#content-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 40px 0;
    text-align: center;
    color: #ffff;
    display: flex;
    flex-direction: column;
}
#content-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 40px 40px;
    text-align: center;
    color: #ffff;
    display: flex;
    flex-direction: column;
}

.content .title {
    font-family: monospace;
    font-size: 70px;
    font-weight: 600;
    margin: auto 0 0;
    letter-spacing: 10px;
}

.content h5 {
    font-family: monospace;
    font-size: 30px;
    letter-spacing: 4px;
    font-weight: 300;
    margin: 0;
    margin-bottom: 15px;
    margin-top: 20px;
}

.content p {
    font-family: monospace;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}

.content img {
    width: auto;
    height: 100px;
    /* padding-bottom: 70px; */
}
body {
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-image: url("https://user-images.githubusercontent.com/26748614/96337246-f14d4580-1085-11eb-8793-a86d929e034d.jpg");
    background-size: cover;
    backdrop-filter:  brightness(50%);
}

canvas {
    display: block;
}

#canvas_container {
    width: 100%;
    height: 100vh;
    z-index: 2;
}

button {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid white;
    border-radius: 5px;
    font-size: 0.9rem;
    padding: 0.5rem 0.9em;
    background: #000000;
    color: white;
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s;
}

button:hover {
    background: #ffffff;
    color: #000000;
}


/* 
--------------------------
Animation
--------------------------
 */
 .focus-in-expand {
    -webkit-animation: focus-in-expand 0.8s ease-in both;
    animation: focus-in-expand 0.8s ease-in both;
}

.puff-in-top {
    -webkit-animation: puff-in-top 1s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
    animation: puff-in-top 1s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

.focus-in-contract {
    -webkit-animation: focus-in-contract 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: focus-in-contract 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes focus-in-expand {
    0% {
        letter-spacing: -0.5em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes focus-in-expand {
    0% {
        letter-spacing: -0.5em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}


@-webkit-keyframes puff-in-top {
    0% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes puff-in-top {
    0% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}



@-webkit-keyframes focus-in-contract {
    0% {
        letter-spacing: 1em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes focus-in-contract {
    0% {
        letter-spacing: 1em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}


/* 
--------------------------
AnimatMedia Queryion
--------------------------
 */


 *{
    margin: 0;
    padding: 0;
}

html, body{
    overflow: hidden;
}

canvas{
    outline: none;
}