html{
    scroll-behavior: smooth;
    scroll-padding-top: 57px;
}

body{
    margin: 0;
    padding: 0;
    background-color: black;
}

.section-title-container{
    color: white;
    font-family: Quicksand;
    text-align: center;
    margin: 0;
    padding: 0;
}

.section-title{
    font-size: 40px;
    padding: 10px;
}

.section-description{
    font-size: 15px;
    padding: 10px;
    
}

section{
    margin: 0;
    padding: 0;
}



  a{
    color: white;
  }

  a:visited{
    color: white;
  }

  .about-me{
    text-align: center;
    font-size: 20px;
    background-color: #525252;
    color:white;
  }

  .about-me-picture{
    border-radius: 500px;
    width: 100%;
    height: auto;
    max-width: 200px;
    padding: 20px;
  }

  .projects{
    background-color: #313131;
  }

  .projects-container{
    display: grid;
    margin: 0 auto;
    max-width: 1200px;
    gap: 1rem;
    padding-top: 75px;

    
  }

  .projects-item-container{
    display: flex;
    flex-direction: row;
    max-width: 350px;
    margin-top: 75px;
    margin-bottom: 75px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .project-item{
    position: relative;
    overflow: hidden;
    border: 1.8px solid #535353;
    
    border-radius: 5px;
    min-width: 350px;
    min-height: 350px;
  }

  .project-item:hover{
    border: 2px solid #1bbcdc;
    border-radius: 5px;
  }

  .project-item-bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: 0.3s all ease-in-out;
  }

  .project-item-bg:hover{
    transform: scale(1.2);
  }

  .project-item-name-container{
    width: 100%;
    position: absolute;
    text-align: center;
    line-height: 35px;
    padding-top: 12px;
    padding-bottom: 12px;
 
    pointer-events: none;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .project-item-name{
    font-family: Quicksand;
    font-size: 30px;
    color: white;
  }

  .project-name{
    background-color: rgba(0, 0, 0, 0.854);
    color: white;
    position: absolute;
    bottom: 0;
    right:0;
    left: 0;
    font-size: 40px;
    text-align: center;
  }

  .thumbnail-row{
    position: relative;
  }

  .project-thumbnail{
    width: 100%;
    transition: 0.5s all ease-in-out;

  }

  .thumbnail-wrapper{
    overflow: hidden;
    border: 1.8px solid #545454;
    transition: 0.25s all ease-in-out;
  }

  .thumbnail-wrapper:hover{
    border: 5px solid #545454;
  }

  .project-thumbnail:hover{
    transform: scale(1.1);
  }

  @media (min-width: 400px) {
    .projects-container { grid-template-columns: repeat(1, 1fr); }
  }

  @media (min-width: 800px) {
    .projects-container { grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 1200px) {
    .projects-container { grid-template-columns: repeat(3, 1fr); }
  }

  .tag-element{
    color: white;
    border-radius: 0px;
    font-size: 20px;
    padding: 10px;
  }

  .tag-list{
    list-style: none;
    padding: 0px;
    margin-top: 10px;
    width: 100%;
    text-align: left;
    overflow: hidden;
  }

  .tag-element{
    display: inline-block;
    margin: 5px;
    font-family: Quicksand, sans-serif;
    font-size: 14px;
    border-radius: 5px;
    line-height: 20px;
  }

  .features-list{
    list-style: none;
    padding: 0;
  }

  .features-list-element{
    padding-left: 1.3em;
    font-family: Quicksand;
    font-size: 19px;
    color: white;
  }

  .features-list-element::before{
    content: "\f00c"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em; /* same as padding-left set on li */
    width: 1.3em; /* same as padding-left set on li */
    color: white;
  }

  .project-item-short-description{
    font-family: Quicksand;
    font-size: 15px;
    line-height: 21px;
    text-align: justify;
    color:white;
  }

  .project-item-short-info-container{
    padding: 20px;
  }
  .project-features-title{
    color: white;
    font-size: 20px;
    font-family: Quicksand;
    font-weight: 700;
  }

  .resume-icon{
    max-width: 200px;
    padding: 10px;
  }




  .contact{
    background-color: #f2f2f2;
    color: white;
    text-align: center;
    
  }



  /* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  /* Add a background color and some padding around the form */
  .form-container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin: 20px;
  }




