﻿body {
    background: #fff;
    color: #2471CB;
}


@keyframes fadeIn {
    from {
        top: 20%;
        opacity: 0;
    }

    to {
        top: 100;
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    from {
        top: 20%;
        opacity: 0;
    }

    to {
        top: 100;
        opacity: 1;
    }
}

/* custom Scroll */
html::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
        background-color: #3a3633;*/
}

html::-webkit-scrollbar {
    width: 1px;
    height: 1px;
    /* background-color: #3a3633;*/
}

html::-webkit-scrollbar-thumb {
    /*background-color: rgba(225,225,225,0.3);*/
    background-color: #666869;
    border-radius: 3px;
}

.flex_center {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
    color: #a9a9a9;
    font-size: 20px;
}

section {
    width: 100%;
    height: 100vh;
}

.blue {
    background: blue;
}

.green {
    background: green;
}

.container {
    width: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
}

.wrapper {
    text-align: center;
}

p.white {
    font-size: 74px;
}
