section {
  background-color: var(--BG-color);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 90vh;
}
.hero-Title {
  font-size: 40vw;
}
@media (min-width: 550px) {
  .hero-Title {
    font-size: 15rem;
  }
}

.hero-Suptitle {
  font-size: 5vw;
}
.section-skills {
  scroll-margin-top: 20vh;
  margin-top: 10vh;
  display: flex;
  justify-content: center;
  background-color: transparent;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  grid-template-rows: repeat(4, 350px);
  grid-gap: 30px;
}
@media (min-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 250px);
    grid-template-rows: repeat(2, 350px);
  }
}
@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 250px);
    grid-template-rows: repeat(2, 350px);
  }
}
@media (min-width: 1200px) {
  .grid {
    grid-template-columns: repeat(4, 250px);
    grid-template-rows: repeat(1, 350px);
  }
}

.background-bar {
  height: 20vh;
  width: 100%;
  background-color: #b8a0cf2d;
  z-index: -1;
  position: sticky;
  top: 50vh;
}
.card-project-list {
  font-size: 0.5em;
}
.skill-card {
  background-color: var(--2nd-color);
  padding: 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(10px 10px 7px var(--3rd-color));
}
.cart-Title {
  font-size: 2rem;
}
.card-ilustration {
  max-width: 70%;
  margin-top: auto;
}
.card-Button {
  margin-top: auto;
}
.card-Button:hover {
  cursor: pointer;
}
@media (min-width: 1245px) {
  .grid {
    grid-template-columns: repeat(4, 20vw);
    grid-template-rows: repeat(1, calc(20vw * 350 / 250));
  }
  .card-Button {
    min-height: 12%;
    max-height: 12%;
    font-size: 1.2vw;
  }
  .cart-Title {
    font-size: 2.5vw;
  }
  .skill-card li {
    font-size: 2.5vw;
  }
}
.section-education {
  padding-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5vw;
  justify-content: flex-start;
}
.divider {
  border-top: 2px solid #ffffff;
  height: 1px;
  width: 95vw;
}
.section-education h1 {
  font-size: 20vw;
}
@media (min-width: 375px) {
}
@media (min-width: 425px) {
  .section-education h1 {
    font-size: 20vw;
  }
}
@media (min-width: 1200px) {
  .section-education {
    justify-content: space-evenly;
    flex-direction: row;
  }
  .divider {
    background-color: white;
    height: 70vh;
    display: inline;
    width: 1px;
  }
  .section-education h1 {
    font-size: 10em;
  }
}
.education-topic {
  font-size: 3em;
}
@media (max-width: 350px) {
  .education-topic {
    font-size: 10vw;
  }
}
.aboutMe {
  scroll-margin-top: 20vh;
  padding-inline: 50px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 50px;
}
.about-me-text {
  word-wrap: normal;
}
.personal-description {
  word-wrap: normal;
}
.portrait-mobile {
  display: block;
  height: 80vw;
}
.portrait {
  display: none;
}
@media (min-width: 1000px) {
  .about-me-text {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 2;
    display: flex;
    align-items: center;
  }
  .portrait {
    display: block;
    height: 80vh;
    order: -0.5;
  }
  .portrait-mobile {
    display: none;
  }
  .aboutMe {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  .aboutMe h1 {
    font-size: 20vw;
  }
}
.section-contact {
  padding-inline: 20px;
}
@media (max-width: 650px) {
  #contact-title {
    font-size: 25vw;
  }
}
input,
textarea {
  all: unset;
  background-color: var(--2nd-color);
  border: 1px solid black;
  border-radius: 10px;
  height: 50px;
  padding-left: 20px;
}
.contact-form {
  max-width: 50vw;
}
.contact-form label {
  display: flex;
  flex-direction: column;
}
.message-input {
  height: 20vh;
}

.submit-button {
  margin-top: 10px;
}
#section-swisscom-projects {
  padding-inline: 20px;
}
#section-swisscom-projects h1 {
  max-width: 100vw;
  font-size: 1vw;
}
.project {
  padding: 10px;
  min-width: 200px;
  max-width: 200px;
  min-height: 300px;
  max-height: 300px;
  background-color: rgba(255, 255, 255, 0.316);
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.244);
}
.project h2 {
  font-size: 2em;
}
