/* default settings */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 64px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 24px;
}



/* pages */

section#main {
    background-color: #f4f4f4;
}
section#intro {
    background-color: #ddd;
}
section#languages {
    background-color: #f9f9f9;
}
section#projects {
    background-color: #efefef;
}

footer {
    height: 100px;
    padding: 30px;
    background-color: #ccc;
}



/* page - #main */



/* page - intro */

#profile-image-tab {
    width: 400px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    background-color: #fff;
    padding: 10px;
    border: 2px solid #aaa;
    border-radius: 7px;
    box-shadow: 6px 6px 12px #aaa;
}

#profile-images {
    transform: translateX(0);
    transition: transform .7s ease;
}

.profile-image {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.profile-image img {
    max-width: 90%;
    height: 300px;
}

#profile-slide {
    transform: translateY(0);
    transition: .3s ease;
    opacity: 0;
}
#profileImg:hover #profile-slide {
    transform: translateY(-40px);
    opacity: 1;
}

#profile-slide input {
    margin: 0 4px;
}

#intro-text h2 {
    margin: 10px 0 20px 0;
}


/* page - language */

#language-box {
    display: flex;
    flex-direction: column;
    height: 200px;
    justify-content: space-between;
}

.language, .project {
    display: inline-block;
    background-color: #fff;
    width: 180px;
    margin: 0 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left;
    box-shadow: 2px 2px 10px #ccc;
}
.language h3, .language span {
    text-align: left;
}




/* web settings */

::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 5px;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #eee;
}