body,
html {
  background-color: #161616;
  height: 100%;
  width: 100%;
  font-family: 'Montserrat', serif;
  font-style: normal;
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  -webkit-font-smoothing: antialiased;
}

*,
* :before,
* :after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Main container */



.header {
  padding-top: 40px;
  width: 100%;
  height: 3.5em;
  position: fixed;
  margin: 0;
  top: 0;
  left: 0;
  right: 0;

  z-index: 60;
}

.header_rest {

  padding-top: 20px;


  background: linear-gradient(to bottom, #000000, transparent);
  width: 100%;
  height: 5em;
  position: fixed;
  margin: 0;
  top: 0;
  left: 0;
  right: 0;

  z-index: 60;


}


.header_boden {
  padding-top: 0;
  background: linear-gradient(to top, #161616 40%, transparent 100%);
  /* Направление градиента */
  width: 100%;
  height: 10em;
  position: relative;
  /* Абсолютное позиционирование */
  top: 85%;

  /* Закрепляем элемент внизу */
  left: 0;
  right: 0;
  z-index: 59;
}







/* НАЧАЛЬНЫЙ ТЕКСТ*/
.center-text {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 3em;
  /* Увеличиваем размер шрифта */
  color: #161616;
  /* Цвет текста */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Центрирование */
  text-align: center;
  /* Выравнивание текста по центру */
  z-index: 2;
  /* Текст должен быть поверх фона */
}





h3 {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-style: normal;
  color: #fff;

}

.logo {
  display: inline-block;
  vertical-align: top;
  /* margin: 0 20px; */
  margin-left: 5%;
  width: 4em;
  height: auto;

  position: relative;
  z-index: 2;


}

.nav_menu {
  margin-right: 5%;
  font-size: 1.5em;
  font-family: 'Montserrat', serif;
  font-weight: 100;
  font-style: normal;
  z-index: 60;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 60;



}

.nav_link {
  font-size: 1.3em;
  font-family: 'Montserrat', serif;
  font-weight: 300;
  font-style: normal;
  display: inline-block;
  vertical-align: top;
  margin: 0 15px;
  color: #efeeee;
  text-decoration: none;
  position: relative;
}

.nav_link:after {
  content: "";
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #efeeee;
  position: relative;
  margin-top: 3px;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 0%;
  opacity: 0;
  transition: opacity .4s linear;
  transition: width .3s linear;

}

.nav_link:hover {
  color: #efeeee;
  transition: color .2s linear;
}

.nav_link:hover::after,
.nav_link.active::after {
  opacity: 1;
  width: 100%;



}

.nav_link.a.active {

  font-size: 0.8em;
  font-family: 'Montserrat', serif;
  font-weight: 100;
  font-style: normal;

  color: #efeeee;

}

.container {
  max-width: 100%;
  /* Maximale Breite des Containers */
  height: 100%;
  margin: 0 auto;
  /* Zentriert den Container horizontal */
  padding: 5%;
  /* Innenabstand für etwas Raum */
  height: 100%;
  /* Höhe des Containers, diese kannst du nach Bedarf anpassen */
}

#actio {

  width: 100%;
  height: 100%;
  margin: 0 auto;
  /* Zentriert den Container horizontal */
  padding-top: 3em;
  margin-bottom: 2em;

}

.background-sketch {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  padding-bottom: 5em;

}

.background-sketch2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  padding-bottom: 5em;
  z-index: -50;
}







.placeholder {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  /* Zentriert den Container horizontal */

}

#projects {
  width: 100%;
  height: auto;
  margin: 0 auto;
  /* Zentriert den Container horizontal */
  /* padding-top: 2em; */
  margin-bottom: 2em;

}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-family: 'Montserrat', serif;
  font-weight: 300;
  font-style: normal;
}

.grid-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.info-button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  font-family: 'Montserrat', serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.info-button:hover {
  background-color: #fff;
  color: #1a1a1a;
}

.more-projects-button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 5px;
  font-family: 'Montserrat', serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1em;
  padding-right: 5px;
  padding-left: 25px;
  cursor: pointer;
  float: right;
  margin-top: 20px;
  transition: background-color 0.3s, color 0.3s;
  transition: padding-right 0.3s, border 0.3s;
}

.more-projects-button .arrow {
  opacity: 0;
  transition: opacity 0.3s;
  margin-left: 5px;
}

.more-projects-button:hover {
  background-color: #fff;
  color: #1a1a1a;
  padding-right: 30px;
  /* Extra Platz für den Pfeil */
}

.more-projects-button:hover .arrow {
  opacity: 1;
}

#about {

  width: 100%;
  height: auto;
  margin: 0 auto;
  /* Zentriert den Container horizontal */
  margin-top: 6em;
  margin-bottom: 3em;
  font-family: 'Montserrat', serif;
  font-weight: 300;
  font-style: normal;
  position: relative;
}

.profile-image {

  float: left;
  width: 35vw;
  height: auto;
  margin-right: 50px;
  z-index: 600;

}

.text-section {
  padding-top: 5vw;
  color: #fff;
  font-size: 1.3em;
  font-family: 'Montserrat', serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5em;
  text-align: justify;


}

#contact {
  width: 100%;
  height: auto;
  margin: 0 auto;
  /* Zentriert den Container horizontal */


  padding-top: 5em;
  position: relative;
}

.social-container {

  display: flex;
  align-items: center;
  left: 50%;
  gap: 5rem;
}

.socialT {
  padding-left: 3em;
}

.social-icons {
  left: 50%;
  display: flex;
  gap: 5rem;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;

  background-color: rgba(255, 255, 255, 0);
  /* Icon background color */
  color: black;
  /* Icon color */
  font-size: 1px;
  /* Icon size */
  text-decoration: none;
}

p {
  font-family: 'Montserrat', serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1em;
  color: #ffffff;

}



#contproj {
  width: 100%;
  max-width: 70vw;
  height: fixed;
  text-align: center;
  margin: 0 auto;


}

.mail {
  font-family: 'Montserrat', serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1em;

  margin: 0 auto;
  padding-bottom: 2em;

  text-decoration: none;
  color: #ffffff;
  font-weight: normal;

}

#footer {

  width: 100%;
  height: 1%;
  max-width: 100%;
  margin: 0 auto;

  padding: 40px 0;
  background-color: #00000000;
  position: relative;

}

.background-image1 {

  background-image: url('/images/spj_1/spj_1.png');
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: auto; */
  /* Keeps the original size */
  width: 100%;
  height: 100%;
}

.background-image2 {

  background-image: url('/images/hompage/project_1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  /* Keeps the original size */
  width: 100%;
  height: 100%;
}

.background-image3 {

  background-image: url('/images/hompage/project_1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  /* Keeps the original size */
  width: 100%;
  height: 100%;
}

.containerProj {
  display: flex;
  /* align-items: center;
  justify-content: center; */
  max-width: 100%;
  position: relative;
  text-align: center;
  color: white;
  height: auto;
  /* Полная высота экрана */
  overflow: hidden;
  /* Скрывает возможные выходы за пределы */
}

.titelImg1 {

  width: 100%;

  /* Ограничение высоты изображения до 60% экрана */

  height: auto;
  display: flex;
}

.contentProj {
  display: block;
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  text-align: right;
}

.contentProj h1 {
  color: #ffffff;
  font-size: 2em;
  margin-bottom: 0.2em;
}

.contentProj h2 {
  color: #ffffff;
  font-size: 1.2em;
  font-weight: normal;
  margin-bottom: 0.2em;
}


/* тут описание и анимация ссылки */
.contentProj p {
  font-size: 1em;
  font-weight: bold;
  color: #007bff;
  /* Начальный цвет - синий (обычно это цвет для ссылок) */
  cursor: pointer;
  /* Курсор меняется на указатель */
  text-decoration: underline;
  /* Подчеркивание */
  transition: color 0.3s ease, transform 0.3s ease;
  /* Анимация */
}

.contentProj p:hover {
  color: #0056b3;
  /* Темно-синий цвет при наведении */
  transform: scale(1.05);
  /* Легкое увеличение текста */
}

.contentProj p:active {
  color: #003f7f;
  /* Еще более темный синий при нажатии */
}

.overlayProj {
  position: absolute;
  /* top: 60%; */
  right: 0;
  /* bottom: 30%; */
  margin-top: 30%;
  /* отступ снизу */
  width: 70%;
  height: 30%;

  /* Adjust width as desired */
  background: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  /* Градиент от черного с прозрачностью до полной прозрачности */
  /* Black with 60% opacity */
  display: flex;
  justify-content: flex-end;
  align-items: right;
  padding: 1em;
  text-align: right;
}


.descriptionProj {

  padding: 2em;
  color: white;
  line-height: 1.6;
  font-size: 1em;
  text-align: justify;
}

.video-container {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  display: flex;


  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-top: 3em;
}

iframe {
  width: 100%;
  height: 100%;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns */
  gap: 0.5em;
  padding: 0.5em;
}

.gallery-item {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
}

@media only screen and (min-width: 1900px) {
  #contproj {
    width: 100%;
    padding-top: 5vw;
    max-width: 70vw;
    height: fixed;
    text-align: center;
    margin: 0 auto;
  }

  #contproj p {
    font-family: 'Montserrat', serif;
    font-weight: 300;
    font-size: 1.5em;
  }




  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 20px;
  }

  .grid-item {
    position: relative;
    overflow: hidden;
  }

  .grid-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    transition: transform 0.3s ease;
  }

  .grid-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);


  }

  #contproj {
    width: 100%;
    padding-top: 10vw;
    max-width: 70vw;
    height: fixed;
    text-align: center;
    margin: 0 auto;



  }
}


@media only screen and (max-width: 1900px) {

  #contproj {
    width: 100%;
    padding-top: 5vw;
    max-width: 70vw;
    height: fixed;
    text-align: center;
    margin: 0 auto;
  }

  #contproj p {
    font-family: 'Montserrat', serif;
    font-weight: 300;
    font-size: 1.5em;
  }


  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
  }

  .grid-item {
    position: relative;
    overflow: hidden;
  }

  .grid-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    transition: transform 0.3s ease;
  }

  .grid-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);


  }





}







@media only screen and (max-width: 1200px) {


  .header_boden {
    padding-top: 0;
    background: linear-gradient(to top, #161616 40%, transparent 100%);
    /* Направление градиента */
    width: 100%;
    height: 10em;
    position: relative;
    /* Абсолютное позиционирование */
    top: 85%;

    /* Закрепляем элемент внизу */
    left: 0;
    right: 0;
    z-index: 59;
  }







  .text-section {

    color: #fff;
    font-size: 1em;
    font-family: 'Montserrat', serif;
    font-weight: 300;
    font-style: normal;
    line-height: 2em;

  }

  .contentProj h1 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 0.2em;
  }

  .contentProj h2 {
    color: #ffffff;
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 0.2em;
  }

  .contentProj p {
    font-size: 0.9em;
    font-weight: bold;

  }



}





@media only screen and (max-width: 900px) {
  .contentProj {
    display: block;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-40%, -50%);
    text-align: right;
  }

  .contentProj h1 {
    color: #ffffff;
    font-size: 1.1em;
    margin-bottom: 0.2em;
  }

  .contentProj h2 {
    color: #ffffff;
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 0.1em;
  }

  .contentProj p {
    font-size: 0.9em;
    font-weight: bold;

  }

  .overlayProj {
    position: absolute;
    /* top: 60%; */
    right: 0;
    /* bottom: 30%; */
    margin-top: 25%;
    width: 70%;
    height: 40%;

    /* Adjust width as desired */
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    /* Градиент от черного с прозрачностью до полной прозрачности */
    /* Black with 60% opacity */
    display: flex;
    justify-content: flex-end;
    align-items: right;
    padding: 1em;
    text-align: right;
  }

  .header_boden {
    padding-top: 0;
    background: linear-gradient(to top, #161616 20%, transparent 100%);
    /* Направление градиента */
    width: 100%;
    height: 10em;
    position: relative;
    /* Абсолютное позиционирование */
    top: 85%;

    /* Закрепляем элемент внизу */
    left: 0;
    right: 0;
    z-index: 59;
  }


  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
  }










  .profile-image {

    position: center;
    width: 100%;
    height: 50%;
    margin-right: 20px;
    margin-bottom: 10vw;

  }

  .text-section {

    color: #fff;
    font-size: 1.2em;
    font-family: 'Montserrat', serif;
    font-weight: 300;
    line-height: 2em;

  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* 3 columns */
    gap: 0.5em;
    padding: 0.5em;
  }


}


@media only screen and (max-width: 780px) {

  .contentProj {
    display: block;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-40%, -50%);
    text-align: right;
  }

  .contentProj h1 {
    color: #ffffff;
    font-size: 1em;
    margin-bottom: 0.2em;
  }

  .contentProj h2 {
    color: #ffffff;
    font-size: 0.9em;
    font-weight: normal;
    margin-bottom: 0.1em;
  }

  .contentProj p {
    font-size: 0.8em;
    font-weight: bold;

  }

  .overlayProj {
    position: absolute;
    /* top: 60%; */
    right: 0;
    /* bottom: 30%; */
    margin-top: 30%;
    width: 70%;
    height: 35%;

    /* Adjust width as desired */
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    /* Градиент от черного с прозрачностью до полной прозрачности */
    /* Black with 60% opacity */
    display: flex;
    justify-content: flex-end;
    align-items: right;
    padding: 1em;
    text-align: right;
  }



  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .nav_link {
    font-size: 1em;
    font-family: 'Montserrat', serif;
    font-weight: 100;
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    color: #efeeee;
    text-decoration: none;
    position: relative;
  }

  .nav_link:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.5px;
    background-color: #efeeee;
    position: relative;
    margin-top: 2px;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 0%;
    opacity: 0;
    transition: opacity .4s linear;
    transition: width .3s linear;

  }

  .nav_link:hover {
    color: #efeeee;
    transition: color .05s linear;
  }

  .nav_link:hover::after,
  .nav_link.active::after {
    opacity: 1;
    width: 100%;



  }

  .nav_link.a.active {

    font-size: 0.3em;
    font-family: 'Montserrat', serif;
    font-weight: 100;

    color: #efeeee;

  }

  .profile-image {


    width: 100%;
    height: 50%;
    margin-right: 20px;
    margin-bottom: 10vw;

  }

  .text-section {
    padding-top: 20vw;
    color: #fff;
    font-size: 1.2em;
    font-family: 'Montserrat', serif;
    font-weight: 300;
    line-height: 2.2em;

  }

  .more-projects-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    font-size: 1em;

    cursor: pointer;
    float: right;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;

  }

  .more-projects-button .arrow {
    opacity: 1;

  }





}

@media only screen and (max-width: 440px) {


  .contentProj {
    display: block;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-10%, -50%);
    text-align: right;
  }

  .contentProj h1 {
    color: #ffffff;
    font-size: 0.9em;
    margin-bottom: 0.1em;
  }

  .contentProj h2 {
    color: #ffffff;
    font-size: 0.8em;
    font-weight: normal;
    margin-bottom: 0.1em;
  }

  .contentProj p {
    font-size: 0.7em;
    font-weight: bold;

  }

  .overlayProj {
    position: absolute;
    /* top: 60%; */
    right: 0;
    /* bottom: 30%; */
    margin-top: 20%;
    width: 70%;
    height: 50%;

    /* Adjust width as desired */
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    /* Градиент от черного с прозрачностью до полной прозрачности */
    /* Black with 60% opacity */
    display: flex;
    /* justify-content: flex-end; */
    align-items: right;
    padding: 1em;
    text-align: right;
  }

  .header_boden {
    padding-top: 0;
    background: linear-gradient(to top, #161616 0%, transparent 100%);
    /* Направление градиента */
    width: 100%;
    height: 6em;
    position: relative;
    /* Абсолютное позиционирование */
    top: 91%;

    /* Закрепляем элемент внизу */
    left: 0;
    right: 0;
    z-index: 59;
  }


  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .nav_link {
    font-size: 0.6em;
    font-family: 'Montserrat', serif;
    font-weight: 100;
    display: inline-block;
    vertical-align: top;
    margin: 0 10;
    color: #efeeee;
    text-decoration: none;
    position: relative;
  }

  .nav_link:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.5px;
    background-color: #efeeee;
    position: relative;
    margin-top: 2px;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 0%;
    opacity: 0;
    transition: opacity .4s linear;
    transition: width .3s linear;

  }

  .nav_link:hover {
    color: #efeeee;
    transition: color .05s linear;
  }

  .nav_link:hover::after,
  .nav_link.active::after {
    opacity: 1;
    width: 100%;



  }

  .nav_link.a.active {

    font-size: 0.1em;
    font-family: 'Montserrat', serif;
    font-weight: 100;

    color: #efeeee;

  }

  .logo {
    display: inline-block;
    vertical-align: top;
    margin: 0 20px;
    width: 2em;
    height: auto;

    position: relative;
    z-index: 2;


  }

  .profile-image {


    width: 100%;
    height: 50%;
    margin-right: 20px;
    margin-bottom: 10vw;

  }

  .text-section {
    padding-top: 20vw;
    color: #fff;
    font-size: 1.2em;
    font-family: 'Montserrat', serif;
    font-weight: 300;
    line-height: 2.2em;

  }

  .more-projects-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    font-size: 1em;

    cursor: pointer;
    float: right;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;

  }

  .more-projects-button .arrow {
    opacity: 1;

  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* 3 columns */
    gap: 0.2em;
    padding: 0.2em;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .overlay {
    /* position: absolute; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.0);
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', serif;
    font-weight: 300;
    font-style: normal;
  }

  #contproj {
    width: 100%;
    max-width: 30vw;
    height: fixed;
    text-align: center;
    margin: 0 auto;



  }

  .social-container {

    display: inline;

    align-items: center;
    left: 0%;
    gap: 2rem;
  }

  .socialT {
    padding-left: 0.1em;
  }

  .social-icons {
    left: 5%;
    display: flex;
    gap: 2rem;
  }

  .icon {
    display: inline;
    justify-content: baseline;
    align-items: flex-start;
    width: 10px;
    height: 10px;

    background-color: rgba(255, 255, 255, 0);
    /* Icon background color */
    color: black;
    /* Icon color */
    font-size: 1px;
    /* Icon size */
    text-decoration: none;
  }

  p {
    font-family: 'Montserrat', serif;
    font-weight: 300;
    font-style: normal;
    font-size: 0.8em;
    color: #ffffff;

  }


}