header {
    background-color: #ffffff;
    color: #ffffff;
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    padding: 20px;
    margin: 0;
  }
  header img {
    max-width: 200px;
    padding-right: 50px;
  }

  body {
    font-family: 'Lato', sans-serif;
  }
  nav {
    display: flex;
  }
  /*.navigationdivider{
    content: "";
    display: block;
    margin: 0 10px;
    width: 20px;
    height: 200px;
    color: #262626;
    border-radius: 20px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }*/
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 14px;
    font-style: normal;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 2px;
    height: 80px;
    line-height: 80px;
  }
  nav li {
    margin-right: 20px;
  }
  nav a {
    color: #262626;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
  }
  nav a:hover {
    text-decoration: underline;
  }
  .project-grid {
    max-width: 70%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px auto;
  }
  .project-item {
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
  }
  .project-item:hover {
    transform: translateY(-5px);
  }
  .project-item h3 {
    font-size: 18px;
    margin-top: 0;
    color: #262626;
    font-weight: 600;
  }

  .project-item p {
    margin: 0;
    position: absolute;
    background-color:#FCBB6D;
    border-radius: 20px 0px 20px 0px;
    padding: 10px 20px 10px 20px;
    color: white;
    font-weight: 600;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    offset: body;
  }
   .project-item p:hover {
    margin: 0;
    position: absolute;
    background-color:#FCBB6D;
    border-radius: 20px 0px 20px 0px;
    padding: 10px 20px 10px 20px;
    color: white;
    font-weight: 600;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    offset: body;
  }
  .project-item img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 10px;
    margin-bottom: 20px;
  }
  .project-item span {
    font-size: 13px;
    font-weight: 1;
    font-style: italic;
    color: #999999;
  }
  @media screen and (min-width: 1243px) {
    .project-grid {
      grid-template-columns: repeat(3, 1fr);
    }

  }

  .portfolio-header {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  .portfolio-header h2 {
    margin-bottom: 0px;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 26.4px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #28262b;
  }
  
  .portfolio-header span {
    margin-top: 0;
    color: #999999;
    font-weight: 400;
    font-size: 14px;
    font-family: "Lato";
    line-height: 20.02px;
    text-transform: none;
    letter-spacing: 0px;

  }
  
  .portfolio-header::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 1px;
    color: #dddddd;
    margin-top: 10px;
    border-radius: 20px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }

footer {
    background-color: #262626;
    text-align: center;
    color: white;
    font-weight: normal;
    font-size: 14px;
    padding: 10px;
  }

  .aboutme-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    max-width: 800px; /* Adjust the max width to your liking */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 20px; /* Add whitespace on both sides */
    /*margin-bottom: 250px;*/
  }

  .aboutme-container > div:first-child{
  /*border: 5px dashed pink;*/
  }
  
  .aboutme-image {
    flex-basis: 40%;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  
  .aboutme-image img {
    flex-basis: 40%;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .aboutme-text {
    flex-basis: 50%;
    max-width: 300px;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
  }
  .aboutme-text h2{
    flex-basis: 50%;
    max-width: 300px;
    text-align: left;
    margin-bottom: 0px;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 26.4px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #28262b;
  }
    .aboutme-title {
    flex-basis: 50%;
    max-width: 300px;
    text-align: left;
  }
  .seperator-line{
    content: "";
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 1px;
    color: #dddddd;
    margin-top: 10px;
    border-radius: 20px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .social-links{
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    max-width: 800px; /* Adjust the max width to your liking */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 20px; /* Add whitespace on both sides */
    margin-bottom: 250px;
  }

  .social-links img{
    max-width: 35px;
    height: auto;
    margin-left: 5px;
    margin-right: 5px;
  }

  @media screen and (max-width: 900px) {
    .aboutme-text {
      flex-basis: 100%;
      border-radius: 20px;
    }
   
  }
@media screen and (max-width: 650px) {
  .Logo{
    display: flex;
  }
  header{
    display: block;
  }

  header a {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  header img {
    margin: 0px;
    padding: 0px;
  }
  nav{
    display: flex;
  }
  nav ul{
    margin: 0px auto;
    height: 40px;
  }
  nav li{
    margin: 0px 10px;
  }  
}
  .article {
    padding-top: 25px;
    border-radius: 20px;
    max-width: 60%;
    margin: 0 auto;
    font-family: 'Lato', sans-serif;
}
.article img{
    border-radius: 20px;
}
.article-header{


}
.article-header img{
    width: 100%;
}

.article-body-intro{
    display: flex;
    margin-top: 25px;
    margin-bottom: 25px;
}
.article-body-intro-divider{
    width: 10%;
}
.article-body-intro-infosection{
    flex-grow: 1;
}
.article-body-intro-content{
    max-width: 65%;
    padding-right: 50px;
}
.article-body-intro-content h1{
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    font-family: "Raleway", "Open Sans", "PT Sans", sans-serif;
    line-height: 26.4px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #28262b;
}
.article-body-intro-content p{
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    font-family: "Raleway", "Open Sans", "PT Sans", sans-serif;
    line-height: 24.99px;
    text-transform: none;
    letter-spacing: 0px;
    color: #565656;
}


.article-body-intro-infobox{
    border-radius: 20px;
    background-color: #ececec;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);

}
.article-body-intro-infobox-divider{
    height: 25px;
    width: 10px;
}
.article-body-intro-infobox-item h2{
    margin: 0px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    font-family: "Raleway", "Open Sans", "PT Sans", sans-serif;
    line-height: 26.4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #28262b;
}
.article-body-intro-infobox-item ul{
    padding-left: 20px;
    line-height: 20px;
    margin: 0;
    }
  @media screen and (max-width: 1000px) {
    .article-body-intro-infobox{
      display: flex;
      justify-content: space-around;
    }
  }
.article-body-intro-button button{
  border-radius: 20px;
  padding: 15px;
  flex-grow: 1;
  width: 100%;
  background-color: #3e64ff;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-width: 0px;
}
.article-body-content-item{
margin-bottom: 25px;
}
.article-body-content-item h2{
    margin-top: 25px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    font-family: "Raleway", "Open Sans", "PT Sans", sans-serif;
    line-height: 26.4px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #28262b;
}

.article-body-content-item p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    font-family: "Raleway", "Open Sans", "PT Sans", sans-serif;
    line-height: 24.99px;
    text-transform: none;
    letter-spacing: 0px;
    color: #565656;
}
.article-body-content-alineadivider{
    height: 25px;
}
.article-body-content-item-imagecontainer{
    display: flex;
    justify-content: space-between;
    
    margin-bottom: 25px;

}
.article-body-content-item-imagecontainer img{
    /*margin-right: 25px;*/
    max-width: 49%;
}

.article-body-content-item-imagecontainer  img:last-child{
    margin-right: 0px;
}
@media screen and (max-width: 850px){
  .article{
    max-width: 85%;
  }
}
@media screen and (max-width: 1000px) {
    .article-body-content-item-imagecontainer{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 0;
    }
    .article-body-content-item-imagecontainer img{
        /*margin-right: 0px;*/
        margin-bottom: 25px;
        max-width: 100%;
    }
    .article-body-intro{
        flex-wrap: wrap;
    }
    .article-body-intro-content{
        max-width: 100%;
        padding-right: 0px;
    }
    .article-body-intro-divider{
        width: 0%;
    }
  }