html, body {
    height: 100%;
    text-align: center;
    background-color: #F0F0F0;
    font-family: 'Comfortaa', cursive;
    margin: 0;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 500;
    line-height: 1.1;
}

a, a:link, a:visited, a:active {
    color: #A3BBD0;
    text-decoration: none;
}

a:hover {
    color: #23527c;
    text-decoration: underline;
}

.welcome {
    width: 100%;
    height: 100%;
    background-image: url(welcome.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    text-shadow: 0 0 15px #000000;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
  
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}

.welcome-content {
    text-align: center;
    width: 100%;
}

.welcome h1 {
    color: #E7E7E7;
    font-size: 9em;
}

.welcome h2 {
    font-size: 4em;
    color: #B7B7B7;
    padding: 10px;
}

.welcome h3 {
    font-size: 2em;
    color: #969696;
}

/* -------------------------------- */
section {
    padding: 50px 0 50px 0;
}

section h1 {
    font-size: 5em;
    margin: 10px 0 40px 0;
}

/* -------------------------------- */
section.github {
    background: #EDEDEA;
}

#github {
    padding: 0 8% 0 8%;
    margin: auto;
    text-align: center;
}

#github a {
    display: block;
    width: 18%;
    min-width: 300px;
    height: 125px;
    display: inline-block;
    background: #DD5F32;
    margin: 1%;
    transition: 0.5s;
}

#github a div {
    margin-top: 30px;
    font-size: 2em;
    height: 41px;
}

#github a:link, #github a:visited, #github a:hover, #github a:active {
    color: #FFFFFF;
    text-decoration: none;
}

#github a:hover {
    background: #853F37;
}

#github a small {
    display: block;
    width: 100%;
    color: #E5E5E5;
}

/* -------------------------------- */
section.who {
    background: #BFE1BF;
}

.who h2 {
    font-size: 3em;
    margin: 0.9em 0 0.9em 0;
}

.who p {
    line-height: 0.8;
    transition: 0.5s;
    font-size: 1.2em;
}

.who p:hover {
    color: #4D4D4D;
    cursor: pointer;
}


/* -------------------------------- */
section.softs {
    background: #A2D7D8;
}

.softs h2 {
    font-size: 2em;
    margin: 0.6em 0 0.6em 0;
}

.softs div {
    width: 200px;
    height: 100px;
    display: inline-block;
    background: #4298B5;
    line-height: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.softs div img {
    position: absolute;
    opacity: 0;
    transition: 1s;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}

.softs div img:hover {
    opacity: 1;
}

/* .softs div:hover span.lang-c { background: url(small-IMG_2102.JPG); } */

/* -------------------------------- */
section.more {
    background: #F0F1EE;
    
}

footer {
    background: #67727A;
    color: #E5E5E5;
    padding: 25px 0 25px 0;
    margin: 0;
}


html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    opacity: 0.1;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(200, 200, 200, 0.8);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
