body {
  color: white;
  background: url('../img/dots.png');
  position: relative;
  min-height: 97.5vh;
  overflow: auto;
}

.header_text {
  display: flex;
  color: white;
  justify-content: center;
  padding-bottom: 180px;
  width: 100%;
  margin: 0;
}

.header_img {
  display: flex;
  justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  padding-bottom: 100px;
}

.header_image2 {
  position: relative;
  top: -90px;
  box-shadow: 1px 1px 39px 39px rgba(126, 36, 62, 0.273);
  left: 90px;
  border-radius: 5px;
}

.header_image3 {
  position: relative;
  box-shadow: 1px 1px 39px 39px rgba(28, 22, 56, 0.579);
  top: 0px;
  left: 0px;
  border-radius: 5px;
}

.row {
  display: flex;
  justify-content: space-between;
  padding-left: 100px;
  padding-right: 100px;
}

.col-6 {
  max-width: calc(50.00% - 70px);
  min-height: 39vh;
  padding: 8px;
  box-shadow: 12px 12px 2px 1px rgb(0, 0, 0);
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.356);
}

.card-image {
  border-radius: 2px;
  background-color: transparent;
}

.card-title {
  padding-top: 30px;
  text-align: center;
}

.img-container {
  background-image: url(../img/backgroundportfolio.png);
  animation: gradient 30s linear infinite;
  background-size: 300% 150%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 12vh;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.name-container {
  padding-left: 2px;
  padding-bottom: 30px;
  height: 10px;
}

.desc-container {
  overflow-wrap: break-word;
  flex-grow: 1;
}

.icon-container {
  position: relative;
  display: block;
}

.created_at {
  color: gray;
  display: flex;
  justify-content: right;
}

.icon {
  height: 30px;
  padding-right: 10px;
  float: right;
}


/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #3d3d3d #DFE9EB;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track:hover {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-track:active {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #3d3d3d;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #575757;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #3d3d3d;
}


.footer{
  font-family: 'Kollektif';
  text-align: center;
  position: relative;
}

a {
  color: white;
}

@media only screen and (max-width: 1300px) {
  .row {
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .col-6 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1000px) {
  .header_text {
    padding-bottom: 25px;
  }
  .header_img {
    display: none;
  }
  .row {
    padding: 10px;
    padding-left: 20px;

  }
}