
/* Start Section */

.scrollTop_section {
    height: 300px;
    text-align: center;
    line-height: 300px;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.scrollTop_section:hover {
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2) inset;
    -moz-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2) inset;
    -ms-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2) inset;
    -o-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2) inset;
}

.scrollTop_section:first-of-type {
    background-color: #F8BBD0;
}

.scrollTop_section:nth-of-type(2) {
    background-color: #DCEDC8;
}

.scrollTop_section:nth-of-type(3) {
    background-color: #B3E5FC;
}

.scrollTop_section:nth-of-type(4) {
    background-color: #C5CAE9;
}

.scrollTop_section:nth-of-type(5) {
    background-color: #FCF6B3;
}

.scrollTop_section:last-of-type {
    background-color: #FFCCBC;
}

.scrollTop_section h1 {
    font-family: sans-serif;
    font-size: 50px;
    color: #455A64;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.scrollTop_section:hover h1 {
    font-size: 45px;
}

/* End Section */

