@import url(https://fonts.googleapis.com/css?family=Dancing+Script|Ubuntu|Roboto:400,700);
/* general styles */
*{
    margin:0;
    padding:0;
}

/* Start Navigation Bar */
.container{
    background-color: rgba(247, 247, 247);
    padding: 10px 0px 0 5px;
    border-bottom: 0.01em solid rgba(167, 167, 167,0.5);
    position: fixed;
    width: 100%;
    z-index: 5;
}

.topleft{
    position: fixed;
}

.brand{
    font-family: "Dancing Script", cursive;
    font-weight: 700;
    font-size: 1.7em;
    opacity: 0.9;
}

.brand:hover{
    opacity: 1;
}

.brand a{
    text-decoration: none;
    opacity: 0.75;
    transition: ease 0.5s;
    float: left;
    color: rgb(60, 149, 233);
    padding-left: 20px;
    
}
  
.brand a:hover{
    color:salmon;
    opacity: 1;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;  
}

li{
    float: right; 
}
  
li a {
    display: block;
    color: rgba(131, 130, 130, 0.897);
    text-align: center;
    padding: 14px 60px 14px 0;
    text-decoration: none;  
}

li a:hover{
    color: rgba(0, 0, 0, 0.897); 
}

/* End Navigation Bar */

/* Start Welcome Section */
section {
	display: flex;
	flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px auto; 
}

section:not(.welcome):nth-child(even) {
    background-color: #f5f5f5;
}

.welcome {
	position: relative;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
    color: #555;
}

#intro {
    position: absolute;
    background-image: url(https://unsplash.imgix.net/photo-1418065460487-3e41a6c84dc5?q=75&fm=jpg&s=127f3a3ccf4356b7f79594e05f6c840e);
    top: 0;
    left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: -1;
	background-color: #80a3db;
}

.welcome h1 {
	font: bold 60px "Open Sans", sans-serif;
	margin-top:120px;
	margin-bottom: 15px;
}

.welcome h3 {
	font: normal 28px "Open Sans", sans-serif;
	margin-bottom: 10px;
}

.welcome-content-area {
	opacity: 0;
	margin-top: 2000px;
	animation: 1s slidefade 1s forwards;
}

@keyframes slidefade {
	100% {
		opacity: 1;
		margin: 0;
	}
}
/* End Welcome Section */

/* Start About Me Section*/
section hr{
    background-color: #516bfc;
    margin-bottom: 20px;
    width: 250px;
	height: 3px;
	border: 0;
}

#about{
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #494949;
}

.about{
    padding-top:30px;
}
/* End About Me Section*/

/* Start Portfolio Section */
.anchor {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden;
}

header{
    padding-top: 30px;
    text-align: center;
}

/* header hr {
    background-color: #803fb5;
    margin-bottom: 50px;
} */

h3.title {
	text-transform: capitalize;
    font: bold 32px "Open Sans", sans-serif;
    /* font: bold 32px Poppins; */
	margin-bottom: 10px;
	text-align: center;
}

main {
  display: grid;
  grid-template-columns: 250px 250px;
  grid-template-rows: repeat(2, 450px);
  grid-gap: 20px;
  margin-top: 44px;
  justify-items: center;
  justify-content: center;
  align-items: stretch;
  align-content: space-between;
  grid-auto-rows: 500px; 
  grid-auto-flow: column;
}

h2 {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: left;
    color: #ffa500;
    padding: 10px 0px 10px 10px;
}

img {
    width: 100%;
    height: auto;
}
  
.work {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5);
    width: 200px;
}

i {
    padding-left: 10px;
    padding-top: 10px;
    width: 20px;
    height: auto;
  }
  
.projects {
    display: inline-block;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: left;
    color: #4a4a4a;
    position: relative;
    bottom: 5px;
}
  
.description {
    font-family: Work Sans;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.29;
    letter-spacing: 0.1px;
    text-align: left;
    color: #4a4a4a;
    padding: 10px 0px 10px 10px;
    border-top: 1px solid #4a4a4a;
}
/* End Portfolio Section */

/* Start Footer Section*/
footer {
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color:#83e4fc;
    padding: 10px 0;
    margin-top: 44px;
}

footer ul {
	display: flex;
	list-style-type: none;
}

footer ul li {
	margin-left: 16px;
}

footer .fa{
  color:white;  
}
/*End Footer Section*/

/* Responsive Styling */
@media (max-width: 1100px) {
	footer {
		flex-direction: column;
	}
	footer p {
		text-align: center;
		margin-bottom: 20px;
	}
	footer ul li {
		margin: 0 8px;
    }
    main{
        grid-template-rows: repeat(3, 450px);
    }
} 

@media (max-width: 800px) {
	.welcome {
		min-height: 600px;
	}
	.welcome h1 {
		font-size: 48px;
	}
	.welcome h3 {
		font-size: 24px;
    }
    /* section {
		padding: 50px 20px;
    } */
    .about{
        padding-bottom:0;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    li a{
        padding: 14px 5px;
        margin-right: 10px;
    }
    .brand a{
        padding-left: 0;   
    }
}

@media (max-width: 500px) {
    main{
        grid-template-rows: repeat(6, 450px);
        grid-template-columns: 250px;
    }
    header hr {
        margin-left: 80px;
    }
    #future {
        text-align: center;
        /* font-size:25px;
        margin-right: 80px; */
    }
    footer {
        padding-right: 25px;
    }
    .brand a{
        float: initial;
        padding-left:0; 
    }
    .brand{
        font-family: "Dancing Script", cursive;
        font-weight: 700;
        font-size: 1.4em;
    }
    li a{
        font-size: 18px;
    } 
}

/* Menetralkan float*/
.clearfix{
    clear: both;
}




  


