.aboutme-box-body {
  padding-right: 20px;
  text-align: right;
}

.aboutme-box .name {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.aboutme-box .bottom-text {
  margin-top: 15px;
}

.aboutme-box .bottom-text .text {
  font-size: 1rem;
  line-height: 1.7rem;
}

.profile-picture-background {
  border-radius: 25px;

  padding: 15px;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);

  line-height: 0;
}

@media (prefers-color-scheme: dark) {
  .profile-picture-background {
    background-color: rgba(150, 150, 150, 0.3);
  }
}

.aboutme-box img {
  border-radius: 20px;
}

/* Desktop */
@media only screen and (min-width: 701px) {
  .left-column {
    float: left;
    width: 50%;
  }

  .right-column {
    float: left;
    width: 50%;
  }

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

}

/* Mobile */
@media only screen and (max-width: 700px) {
  .left-column {
    display: block;
  }

  .right-column {
    display: block;
  }

  .aboutme-box-body {
    text-align: left;
    margin-bottom: 15px;
  }

}


/* Projects on dektop */
@media only screen and (min-width: 701px) {
  .project-container .row {
    display: flex;
    margin-bottom: 15px;
  }

  .project-container .row:last-of-type {
    margin-bottom: 0 !important;
  }
  
  .project-container .row .project {
    width: 50%;
    margin-bottom: 0 !important;
  }

  .project-container .row .project:first-of-type {
    margin-right: 15px;
  }
}

.project-container-footer {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;

  /* background-color: white; */

  text-align: center;
  font-size: 1.4rem;

  margin-top: 20px;
  margin-bottom: 5px;
}

.project-container .project {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  border-radius: 25px;

  padding: 15px;
  margin-bottom: 15px;
}

.project-container .project:last-of-type {
  margin-bottom: 0 !important;
}

@media (prefers-color-scheme: dark) {
  .project-container .project {
    background-color: rgba(150, 150, 150, 0.3);
  }
}

.project-container .project .title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
  margin-top: 5px;
}

.project-container .project .body {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0;
}

.project-container .project .view-button {
  margin-top: 15px;
  text-align: right;
}

.project-container .project img {
  border-radius: 15px;
  /* background-color: rgba(255, 255, 255, 0.514); */
}

/* @media (prefers-color-scheme: dark) {
  .project-container .project img {
    background-color: rgba(255, 255, 255, 0.05);
  }
} */

.project-container .project img.p-5 {
  padding: 5px;
}

.project-container .project img.p-10 {
  padding: 10px;
}

.tag-section {
  display: flex;
  margin-top: 5px;
}

.tag {
  background-color: #000000 !important;
  border-radius: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;

  margin-right: 5px;

  color: white;
  font-size: 14px;
  font-weight: 400;
}

.tag-blue {
  background: linear-gradient(to right, rgb(98, 100, 235), rgb(128, 130, 239)) !important;
}

.tag-red {
  background-color: #d22332 !important;
}

.tag-green {
  background-color: #29d223 !important;
}