@import url('https://fonts.googleapis.com/css?family=Varela|Varela+Round&display=swap');

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

* {
  margin: 0;
  padding: 0;
  /*background-color: black;*/
}

html {
  scroll-behavior: smooth;
   /*transition-duration: 500ms;*/
}


body {
  /*color: #575f7d;*/
  color: white;
  /*background-color: #F8F9FC;*/
  /*background: linear-gradient(rgba(7,21,24,1) 0%, rgba(15,37,47,1) 20%);*/
  /*background: linear-gradient(90deg, rgba(7,21,24,1) 0%, rgba(15,37,47,1) 5%);*/
  /*background-color: #0f252f*/
  margin:0;
  padding: 0;
}

.bg-1 {
  background: linear-gradient(rgba(7,21,24,1) 0%, rgba(15,37,47,1) 30%);
}

.bg-2 {
  background: linear-gradient(rgba(15,37,47,1) 0%, rgba(7,21,24,1) 70%);
}

.container {
  width: 700px;   /* This sets the width */
  margin: 0 auto; /* This automatically sets left/right margins */
}

.text-center {
  text-align: center;
}

.portfolio-card {
/*  background: #F8F9FC;*/
  padding: 0px;
  /*border: 1px solid lightgrey;*/
  min-height:100vh;
  /*box-shadow: 1px 3px 30px rgba(0,0,0,0.1)*/
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

}

.portfolio-card:nth-child(n+2) {
  /*border-radius:4px;*/
  border-top: #F45905 1px solid;
}

.d-flex-center {
  display:flex;
  justify-content: center;
  align-items: center;
}

.d-flex-between {
  display:flex;
  justify-content: space-between;
  align-items: center;
}

.d-flex-around {
  display:flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
}

#profilepic{
  width: 200px;
  margin-top: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: white 10px solid;
}


.miscellanious {
  font-size: 20px;
  transition: all 0.4s ease;
}

.miscellanious:hover{
  font-size: 30px;
  transition: all 0.4s ease;
}

.miscellanious-card {
  min-height: 80vh;
  width: 100%;
}

.project-img {
  width: 500px;
  height: 300px;
  display: inline-block;
  background: transparent;
  /*box-shadow: 1px 3px 30px rgba(0,0,0,0.1);*/
  transition: all .5s ease;
}


.project-img:hover{
  width: 700px;
  height: 500px;
  transition: all .5s ease;
}

/*.project-img:hover{
 width: 500px;
 height: 300px;
 transition: all .5s ease;
}*/

.project-card {
  width: 100%;
  margin: 20px 0;
  /*border: 1px solid lightgrey;*/
  /*box-shadow: 1px 3px 30px rgba(0,0,0,0.1)*/
}

.project-card a {
  /*color: #2a1a5e;*/
  /*color: white;*/
  /*padding: 0 20px;*/
  transition: all .3s ease;
}

.project-card a:hover {
  color: #F45905;
  cursor: pointer;
}

.img-language {
  height: 50px;
}

.text-language {
  opacity:0;
  transition: .3s
}

.languages > li:hover .text-language {
  opacity:1;
}

h1, h2, h3, .heading {
  font-family: 'animeace', sans-serif;
  color: #F45905;
  /*color: white;*/
}

p, a {
  font-family: 'Varela Round', sans-serif;
}

/*------------------------------ LINKS ----------------------------*/

a {
  text-decoration: none;
  /*color: #F45905;*/
  color: #9C95DC;
}

a:hover{
  /*opacity: 0.6;*/
  color: #F45905;
  transition: all .3s ease;
}

.list-inline a {
  text-decoration: none;
}

.list-inline a:hover{
  opacity: 0.6;
  color: #F45905;
  transition: all .3s ease;
}

.discover-div {
  opacity: 0;
  transition: all 2s ease;
}

.discoverbtn{
  text-decoration: none;
  color: white !important;
  /*margin: 50px 0;*/
  display: inline-block;
  padding: 16px !important;
  margin: 16px !important;
  border-radius: 4px;
  background-color: #2a1a5e;
  transition: all .3s ease;
}

.discoverbtn:hover {
  background-color: #F45905;
  color: white;
  opacity: 1;
}

h1{
  font-size: 32px;
}

h2 {
  font-size: 24px;
  /*margin: 30px 0px;*/
}


p {
  /*margin: 40px 0px;*/
}


.list-inline {
  list-style: none;
  padding-left: 0px;
}



.list-inline > li {
  display: inline-block;
  padding: 0px 20px;

}


/* PROGRESS BAR */

.progress-container {
  width: 100%;
  height: 2px;
  position: fixed;
  top: 0;
  z-index: 100;
  /*margin: 0;*/
  /*padding: 0;*/
}

.progress-bar {
  margin:0;
  height: 5px;
  background: #ff4a64;
  width:0px;
  transition: width 0.1s ease;
}


/*color theme : https://colorhunt.co/palette/158955*/
@media (max-width: 960px) {
  /* For a screen < 960px, this CSS will be read */
  .container {
    width: 95vw;
  }

  #profilepic{
    margin-top: 20px;
  }

  .project-img {
    width: 500px;
    height: 400px;
  }


  .project-img:hover{
    width: 700px;
    height: 500px;
    transition: all .5s ease;
  }
}

@media (max-width: 720px) {
  /* For a screen < 720px, this CSS will be read */
  .container {
    width: 95vw;
  }

  #profilepic{
    margin-top: 20px;
  }

  .project-img {
    width: 300px;
    height: 200px;
  }

  .project-img:hover{
    width: 400px;
    height: 400px;
    transition: all .5s ease;
  }
}

@media (max-width: 540px) {
  /* For a screen < 540px, this CSS will be read */
  .container {
    width: 95vw;
  }

  #profilepic{
    margin-top: 20px;
  }

  .project-img {
    width: 300px;
    height: 200px;
  }


  .project-img:hover{
    width: 400px;
    height: 400px;
    transition: all .5s ease;
  }

  .project-card a {
    font-size:12px;
  }
}

.gallery {
  width: 100%;
}
