* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #1c2323;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  margin: 0;
}
h2{
  color: #fff;
  font-size: 36px;
}
.section__title{
  margin-bottom: 20px;
  text-align: center;
}
.container{
  padding:50px 0;
  
}
.text-green {
  color: lightgreen;
}
::-webkit-scrollbar {
  overflow: scroll;
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: lightgreen;
  border-radius: 10px;
}
/*START HEADER SECTION */
#main-header {
  background-color: #1c2323;
  min-height: 30px;
}

.header-logo img {
  display: block;
  text-align: center;
  margin: 0px auto;
  padding-top: 5px;
}
/*END HEADER SECTION*/
/*START NAVBAR SECTION */
#navbar {
  background-color: #1c2323;
  color: #1c2323;
  text-align: center;
  word-spacing: 4em;
}

#navbar ul {
  padding: 0;
  list-style: none;
}

#navbar li {
  display: inline;
}

#navbar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding-right: 15px;
  font-weight: bold;
  transition-duration: 400ms;
}

#navbar a:hover {
  text-decoration: underline;
  font-size: 25px;
}
/*END NAVBAR SECTION */
/*START SHOWCASE SECTION */
#showcase {
  background-image: url(../images/cloud.svg);
  background-position: center right;
  margin-bottom: 30px;
  min-height: 700px;
}
#showcase h1 {
  color: #fff;
  font-size: 38px;
  line-height: 1.6em;
  text-align: center;
  padding-top: 30px;
}

.aboutme {
  padding-top: 30px;
  display: flex;
  justify-content: space-evenly;
}
.aboutme-selfie {
  padding-top: 20px;
  max-width: 25%;
  max-height: 250px;
}
.aboutme-selfie img {
  border-radius: 50%;
  border: 5px solid lightgreen;
  max-width: 250px;
  width: 100%;
  animation: animate-profile-picture 800ms 200ms backwards;
}
@keyframes animate-profile-picture {
  0%{
    transform: scale(0);

  }
  80%{
    transform: scale(1.1);
  }
  100%{
    transform: scale(1);
  }
}
@keyframes fade-left{
  0%{
    opacity: 0;
    transform: translateX(80px);

  }
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-up{
    0%{
      opacity: 0;
      transform: translateY(80px);
  
    }
    100%{
      opacity: 1;
      transform: translateY(0);
    }
}
.aboutme-text {
  padding-bottom: 100px;
  padding-top: 40px;
  padding-right: 100px;
  max-width: 70%;
  width: 100%;
  min-height: 300px;
  float: right;
}


.aboutme-text p {
  color: white;
  font-weight: bold;
  line-height: 1.9em;
  animation: fade-left 650ms 400ms backwards;
}

.social-icon {
  color: lightgreen;
    font-size: 36px;
    padding: 0 10px;
    transition: all .3s ease;
    overflow: visible;
    box-sizing: content-box;
    display: var(--fa-display, inline-block);
    height: 1em;
    vertical-align: -0.125em;
}

.social-container {
  margin-top: 25px;
  margin-bottom: 25px;
  animation: fade-up 800ms 600ms backwards;
}
.social-container a{
  text-decoration: none;
}
/*END SHOWCASE SECTION */
/* TECH STACK */
#languages{
  /*background-color: #333a3a;*/
  background-color: #242d2d;
}

.language__img{
  width: 100%;
  max-width: 100px;
  transition: all 300ms ease;
}
.language:hover .language__img {
  filter: brightness(80%);
  opacity: 0.86;
  transform: scale(0.9);
}
.language__img--wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 16px;
  
}
.language{
  width: 25%;
  display: flex;
  justify-content: center;
  position: relative;
}
.language__list{
  display: flex;
  width:100%;
  flex-wrap: wrap;
  justify-content: center;
}
.language__name {
  color: #fff;
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: all 300ms ease;
  font-size: 20px;
  opacity: 0;
}
.language:hover .language__name{
  transform: scale(1);
  opacity: 1;
}
/*START ROW and PROJECTS SECTION */
.row {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  
}

#projects-overview {
  padding-bottom: 50px;
  padding-top: 50px;
}
.projects-wrapper {
  align-items: center;
  border-bottom: 1px solid lightgreen;
  display: flex;
  justify-content: space-around;
  padding-bottom: 100px;
  padding-top: 100px;
}
.projects-info h2 {
  color: white;
  font-size: 38px;
  margin-bottom: 20px;
}

.projects-description {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 420px;
}
.projects-technology {
  background-color: white;
    border-radius: 3px;
    color: black;
    margin: 2px;
    padding: 6px 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;

}
.projects-stack {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-bottom: 20px;
  max-width: 300px;
}
.projects-wrapper-img img {
  border: 2px white;
  border-radius: 10px;
  max-width: 400px;
}

.projects-wrapper-img img:hover {
  transform: scale(1.05);
  transition-duration: 500ms;
}


/*END ROW and PROJECTS SECTION */
/*START FOOTER SECTION */
#main-footer {
  background: black;
  color: #fff;
  height: 200px;
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  align-items: center;

}
#main-footer p {
  text-transform: uppercase;
}
#linkscontainer h5 {
  color: #ffffff;
  font-size: 32px;
  text-decoration: underline;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#linkscontainer {
  max-width: 200px;
  width: 100%;
}
#linkscontainer ul {
  list-style: none;
  font-size: 20px;
  padding-left: 0px;
}

#linkscontainer a {
  text-decoration: none;
  color: white;
}

/*END FOOTER SECTION */
/*START MEDIA RESPONSIVENESS SECTION */

@media (max-width: 1200px) {
  
}
@media (max-width: 1024px) {
  .aboutme-selfie{
    max-width: 100px;
    width: 100%;
    margin-right: 10%;
  }
  #showcase
  {
    max-height: 1000px;
  }
}
@media (max-width: 768px) {
  .aboutme-name {
    font-size: 36px;
  }
  
  .aboutme-text p{
    
      font-size: 10px;
      margin:0 auto 10px;
      max-width: 70%;
      width: 100%;
      
  }
  
  .projects-overview-header{
    font-size: 30px;
  }
  .projects-wrapper {
    flex-direction: column;
  }
  .projects-info {
    display: flex;
    flex-direction: column;
  }
  .projects-name {
    font-size: 22px;
  }
  .projects-description {
    font-size: 12px;
  }
  .projects-wrapper-img {
    max-width: 400px;
    width: 100%;
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .aboutme-name {
    font-size: 28px !important;
  }
}

/*START CONTACT.HTML SECTION*/
.contact-container{
  min-height: 620px;
  background-image: url(../images/cloud.svg);
}
.form-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 30%;
  padding-bottom: 10px;
  margin-left: 20px;
}

.form-name{
  margin-left: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  
}
.form-email{
  margin-left: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.form-comment{
  margin-left: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.form-subject{
  margin-left: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.button-submit{
  margin-left: 40px;
  margin-bottom: 10px;
  
}
/*END CONTACT.HTML SECTION */