@font-face {
    font-family: "Autumn Chant";
    src: url("fonts/Autumn\ Chant.otf") format("opentype");
}

@font-face {
    font-family: "Unicorn Confetti";
    src: url("fonts/UnicornConfetti-qZBD0.ttf") format("truetype");
}

@font-face {
    font-family: "San Diego";
    src: url("fonts/San\ Diego.ttf") format("truetype");
}

@font-face {
    font-family: "Silent Caroline";
    src: url("fonts/Silent\ Caroline.otf") format("opentype");
}

@font-face {
    font-family: "Herliana";
    src: url("fonts/Herliana.ttf") format("truetype");
}

@font-face {
    font-family: "Herliana Bold";
    src: url("fonts/HerlianaBold.ttf") format("truetype");
}

@font-face {
    font-family: "LemonTea";
    src: url("fonts/LemonTea.otf") format("opentype");
}

@font-face {
    font-family: "TingTong";
    src: url("fonts/TingTong.ttf") format("truetype");
}




/* background colors */
body {
    background: -webkit-linear-gradient(top, bisque 100vh, #fff4e6 120vh);
    margin: 0px;
}

/* scroll indicator */
/* Style the header: fixed position (always stay at the top) */
  
/* The progress container (grey background) */
.progress-container {
    width: 100%;
    height: 4px;
    background: white;
}

/* The progress bar (scroll indicator) */
.progress-bar {
    height: 4px;
    background: grey;
    width: 0%;
}

/* navigation bar */
#logo {
	left: 0;
	height: 40px;
	margin: 10px;
	top: 0;
	position: fixed;
	transform: rotate(28deg);
}

#navbar {
    font-family: "Oswald";
    font-size: 120%;
    position: fixed;
    text-align: right;
    width: 100%;
    top: 0px;
    
    background-image: -webkit-linear-gradient(top, bisque 100vh, #fff4e6 120vh);
    background-repeat:no-repeat;
    /* background-position: top;
	background-size: auto 1000px; */
	z-index: 10;
}

.navbar_link {
    all: unset;
}

.navbar_link:hover {
    color: darkgrey;
}

nav a {
    text-align: center;
    text-decoration: none;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
    color: black;
}

nav a:hover {
    color: darkgrey;
}

/* scroll to top button */
#scroll_to_top_button {
    transform: rotate(180deg);
    position: fixed;
    color: black;
    bottom: 20px;
    right: 20px;
    z-index: 100;

    background: transparent;
    border: none;
    outline: none;
    text-align: center;
}

#scroll_to_top_button:hover {
    color: darkgray;
}

/* name banner */
.banner{
    text-align: center;
    letter-spacing: 2%;
    margin-top: 13%;
    font-family: "Oswald";
    height: 100vh;
    position: relative;
    
    /* animation */
    animation: fadeInAnimation ease 6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
#name { font-size: 1000%;}
#subname { font-size: 200%;}


@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
       opacity: 0;
       transform: translateX(-50px);
    }
    100% {
       opacity: 1;
       transform: translateX(0);
    }
 }  

 @keyframes fadeInRight {
    0% {
       opacity: 0;
       transform: translateX(50px);
    }
    100% {
       opacity: 1;
       transform: translateX(0);
    }
 }  
 
 
 @keyframes fadeOutLeft {
    100% {
       opacity: 0;
       transform: translateX(-20px);
    }
    0% {
       opacity: 1;
       transform: translateX(0);
    }
 }   

#scroll_button {
    display: inline-block;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;

    color: black;
    animation: bounce 3s ease infinite; 
    position: absolute;
    font-size: 2rem;

    /* center the element */
    left: 50%;
    margin-left: -2%;
    /* margin-top: 9rem; */
}

#scroll_button:hover {
    color: darkgrey;
}

#home_button {
    background: transparent;
    border: none;
    outline: none;
}
  
@keyframes bounce {
    50% {
        transform: translateY(-50%);
    }
}

#resume_button {
    font-family: Oswald;
    font-weight: 300;
    letter-spacing: 1px;

    background-color: bisque;
    border: none;
    font-size: 110%;
    padding: 3px;
    border-radius: 2%;
}

#resume_link {
    text-decoration: none;
}

#resume_button:hover {
    background-color: #fff4e6;
    color: darkgrey;
}

/* text & images */ 

.section{
    font-family: Oswald;
    font-weight: 300;
    font-size: 110%;
    letter-spacing: 1px;

    padding: 8%;
    margin-top: 13%;
    margin-bottom: 13%;
    margin-right: 16%;
    margin-left: 16%;

    /* animation */
    animation: fadeInRight ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.section_header {
    font-size: 180%;
    font-family: TingTong;
    color: black;
}

#profilepic {
    height: 350px;
    width: auto;
    padding: 5%;
    margin-top: 13%;
    border-radius: 50%; 
    float: left;
    margin-left: 16%;

    animation: fadeInLeft ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.flower_divider {
    text-align: center;
}

#flower_gif {
    height: 100px;
    width: 100px;
}

footer {
    font-family: Silent Caroline;
    text-align: center;
}

/* skills */

.skills_container {
    display: grid;
    grid-column: 1;
}

.skills_box {
    background-color: bisque;
    border-radius: 12px;
    margin-bottom: 50px;
}

.skills_title {
    text-align: center;
    font-weight: bold;
}

.skills_list {
    text-align: center;
    margin-bottom: 20px;
}

.skills_expand_button {
    display: block;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: black;
    margin-bottom: 20px;
    font-size: 120%;
    font-weight: 100;
    font-family: Oswald;
}

.skills_expand_button:hover {
    color: darkgray;
}
/* skills smaller */

.carousel {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(0px, 1fr)); */
    /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr; */
    justify-items: center;
    transition: transform 250ms ease-in;

}
.skills_smaller_container {
    justify-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.skills_smaller_box {
    background-color: #fff4e6;
    border-radius: 12px;
    height: 100px;
    width: 150px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    margin-bottom: 20px;
    grid-row: 1;
}

.skills_smaller_title {
    font-weight: bold;
    text-align: left;
}

.skills_smaller_description {
    font-size: 50%;
    text-align: left;
}

.skills_left_button {
    transform: rotate(90deg);
    width: 50px;
    height: 50px;
    display: inline-block;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    color: black;
}

.skills_left_button:hover {
    color: darkgray;
}


.skills_right_button {
    transform: rotate(-90deg);
    width: 50px;
    height: 50px;
    display: none;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
}

.skills_right_button:hover {
    color: darkgray;
}

/* projects */
.projects_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(300px, 1fr));
}

.project_box {
    background-color: bisque;
    border-radius: 50px;
    width: 300px;
    height: 300px;
    margin-bottom: 50px;
}

.project_box:hover {
	opacity: 0.5;
}

.project_link, .project_link:hover, .project_link:visited, .project_link:active {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.project_title {
    text-align: center;
    font-weight: bold;
}

.project_subtitle {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}

.project_description {
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;

}

/* gifs */

.banner_gifs {
    position: relative;
}

#gudetama_img {
	display: block;
    margin-left: auto;
    margin-right: auto;
    height: 130px;
}
#computer_gif {
    position: absolute;
	width: auto;
    height: 100px;
    margin-left: 730px;
    margin-top: -80px;
}

#camera_gif {
    position: absolute;
    width: 130px;
    height: auto;
    margin-left: 480px;
    margin-top: -60px;
}

#musicnote_gif {
    position: absolute;
    width: 60px;
    margin-left: 20px;
    margin-top: -50px;
}

#journal_gif {
    position: absolute;
    width: 90px;
    height: auto;
    margin-left: 240px;
    margin-top: -70px;
}


