/* Global Styles */
html {
    scroll-behavior: smooth;

}
body, html {
  overflow-x: hidden;
  margin: 0;
}

body {
    background: #dd8697;
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #200041;
}

p {
    text-align: justify;
}

/* Navbar Styles */
.navbar {
    transition: all 1s;
}

.navbar-scrolled {
    background-color: #fcf6ba;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Parallax Styles */
.parallax{
    position:relative;
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100vh;
}

.parallax img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

/* Font Styles */
.merriweather-sans {
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: fancake;
    src: url(font/Fancake.otf);
}

/* Custom Font Class */
.FancakeFont {
    font-family: fancake;
}

/* Link Styles */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    color: #dd8697;
}

.sectiontitle{
    font-family: fancake;
    font-size: 4em;
    color: #200041;
}

.FotoDiri{
    padding-right: 50px;
    padding-left: -500px;
    margin-right: 10%;
}
.AboutMe{
    padding-right: 20px;
    padding-top: 50px;
}

.sectiontitle h1{
    margin-top: 100px;
}

  /* Skills */
  .header {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 10px;
    display: grid;
    place-items: center;
    text-align: center;
  }

  .header h2{
    margin-bottom: -5px;
  }
.skills_section{
    width: 100%;
    height: 100vh;
    padding: 0px 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.skills_head{
    width: 100%;
    margin-bottom: 100px;
    display: grid;
    place-items: center;
    text-align: center;
    margin-top: 20px;
}
.skills_head h2{
    font-family: fancake ;
    font-size: 4em;
    color: #200041;
    margin-bottom: -5px;
}
.skills_main{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
    grid-column-gap: 50px;
}
.skills_main .skill_bar .info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  0 10px;
}
.skill_bar .info p:nth-child(2){
    font-weight: 500;
}
.skill_bar .bar{
    width: 100%;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.144);
    border-radius: 25px;
    margin-top: 5px;
    position: relative;
    font-family: "Merriweather Sans", sans-serif;
}
.skill_bar .bar span{
    width: 50%;
    height: 100%;
    position: absolute;
    background-color: #fcf6ba;
    border-radius: 25px;
}
.skill_bar .bar .adobeillustrator{
    width: 90%;
    animation: adobeillustrator 2s;
}
@keyframes adobeillustrator {
    0%{
        width: 0%;
    }100%{
        width: 90%;
    }
}
.skill_bar .bar .adobephotoshop{
    width: 85%;
    animation: adobephotoshop 2s;
}
@keyframes adobephotoshop {
    0%{
        width: 0%;
    }100%{
        width: 85%;
    }
}
.skill_bar .bar .adobeae{
    width: 75%;
    animation: adobeae 2s;
}
@keyframes adobeae {
    0%{
        width: 0%;
    }100%{
        width: 75%;
    }
}
.skill_bar .bar .adobeindesign{
    width: 75%;
    animation: adobeindesign 2s;
}
@keyframes adobeindesign {
    0%{
        width: 0%;
    }100%{
        width: 75%;
    }
}
.skill_bar .bar .blender{
    width: 78%;
    animation: blender 2s;
}
@keyframes blender {
    0%{
        width: 0%;
    }100%{
        width: 78%;
    }
}
.skill_bar .bar .ibispaintx{
    width: 80%;
    animation: ibispaintx 2s;
}
@keyframes ibispaintx {
    0%{
        width: 0%;
    }100%{
        width: 80%;
    }
}

  @media (min-width: 768px) {
    .offcanvas {
      width: 50vw;
      height: 100vh;
    }
  }

 /* Portfolio */
.card-title{
    text-align: center;
}
.card-body{
    text-align: justify;
}
.card{
    background-color: transparent;
    border-color: transparent;
}
.card img{
    box-shadow: 0px 0px 20px #200041;
}

.galleryporto img{
    margin-top: 40px;
    box-shadow: 0px 0px 20px #200041;
    border-radius: 5px;
}

.galleryporto img:hover{
    box-shadow: 0px 0px 20px #200041;
    transform: scale(0.9) rotate(-15deg);
    border-radius: 20px;
}

footer {
  position: relative;
  margin-top: 20px;
}
.footer {
    background-color: #200041;
    color: #fcf6ba;
    position: relative bottom;
    padding: 10px 0;
}

.footer .sectiontitle {
    text-align: center;
    color: #fcf6ba;
    font-size: 3em;
    margin-top: 10px;
}
.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.footerNav ul li a{
    text-align: center;
    color:#fcf6ba;
    margin: 10px;
    text-decoration: none;
    font-size: 1.5em;
    opacity: 0.7;
    transition: 0.5s;

}
.footerNav ul li a:hover{
    opacity: 1;
}