/*remaining color #C5EBC3*/

* {
  padding: 0;
  margin: 0;
}

a, a:hover, a:focus, a:active {
     text-decoration: none;
     color: inherit;
}

body {
  font-family: 'Montserrat'
}

body > *:nth-child(even) {
  background-color:#22333B;
  color:#F2F4F3;
}
body > *:nth-child(odd) {
  background-color:#F2F4F3;
  color: #0A0908;
}

p {
  font-weight:300;
  font-size:1.15rem;
}

.container {
  width:80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.footer .container {
  flex-direction: row;
}

#profile {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#profile h2 {
  font-weight:lighter;
}

.banner-horizontal {
  display: flex;
  align-items: center;
  z-index: 1;
}

.catchphrase {
  margin: 0 0 0 4rem;
}

.catchphrase li {
  margin: 5px 0 0 50px;
  font-weight: 100;
  font-size: 1.25rem;
}

.avatar {
  width:120px;
  height:120px;
  border-radius: 50%;
  border: solid 5px white;
}

.section {
  padding: 4rem 0;
  overflow-x: hidden;
}
.section h2 {
  font-size:2em;
  margin-bottom:4rem;
  font-weight: normal;
  text-align: center;
}

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


.cards-skill {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-evenly;
  margin-bottom:2rem;
  max-width: 860px;
}

.card-skill {
  height: 5rem;
  margin: 0 1rem 1rem 1rem;
}

.cards-project {
  display:flex;
  flex-wrap:wrap;
}

.card-project{
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}
.card-project-text {
  margin: 0 4rem;
  width:100%;
}

.card-project-desc {
  opacity: 0.7;
  font-size: 0.9rem;
}

.cards-project .card-project:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.img-project{
  background-size: cover;
  width:40%;
  min-width: 240px;
  max-width:800px;
  min-height:150px;
  max-height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  font-size: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}
.img-project:hover{
  font-size: 24px;
  transform: scale(1.02);
}

.bg-livubi{
  background-image: url(images/livubi.png);
}
.bg-livubi:hover{
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(images/livubi.png);
}
.bg-kty{
  background-image: url(images/galerie_kty.png);
}
.bg-kty:hover{
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(images/galerie_kty.png);
}
.bg-musicband{
  background-image: url(images/music_band.png);
}
.bg-musicband:hover{
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(images/music_band.png);
}
.bg-adopt{
  background-image: url(images/adopt_villain.png);
}
.bg-adopt:hover{
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(images/adopt_villain.png);
}


.btn {
  border-radius: .25rem;
  background-color:#C74C45;
  border-color: #C74C45;
  color: #fff;
  font-weight:300;
  padding: .375rem .75rem;
  line-height: 1.5;
  text-align:center;
  vertical-align: middle
  font-size:1rem;
  border: 1px solid transparent;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
}

#profile .btn {
  margin-top: 2.5rem;
}

.btn:hover {
  color: #fff;
  background-color: #a03b36;
  border-color: #a03b36;
}

.btn:focus {
  outline: 0;
}
.btn:active {
  box-shadow: 0 0 15px white;
  background-color: #8c342f;
}

#particles-js{
  position:absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background-color: transparent;
}

.footer {
  padding: 2rem 0;
  font-size: 2rem;
  text-decoration:none;
}

.footer a {
  margin: 0 1rem;
}
.footer a:hover {
  color: #838383;
  transition: all 0.3s ease;
}
.footer img {
  height:2rem;
  filter: grayscale(1) brightness(2);
}
.footer img:hover {
  filter: grayscale(1);
  transition: all 0.3s ease;
}


@media screen and (max-width: 1024px) {
  html {
    font-size: 80%;
  }

  .banner-horizontal {
    flex-direction: column;
  }

  .avatar {
    margin-bottom: 2rem;
  }

  .catchphrase {
    margin: 0;
  }

  .card-project, .cards-project .card-project:nth-child(even) {
    flex-direction: column;
    text-align:center;
  }

  .card-project-text {
    margin: 2rem 0;
  }

  .card-project-desc {
    display: none;
  }
}

@media screen and (min-width: 1400px) {

}



