html,
body {
  padding: 0;
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  scroll-behavior: smooth;
  background-color: #f4f4f4;
}

a {
  color: black;
}

.top-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5em;
}

.top {
  justify-content: space-around;
  display: flex;
  align-items: center;
  padding: 1rem;
  width: 35%;
  border-bottom: 1px solid lightgray;
}

.top-left {
  margin-right: 5em;
  max-height: 200px;
}

.top img {
  width: 300px;
  border-radius: 50%;
  max-height: 100%;
  max-width: 100%;
}

.top-text-box {
  margin-top: 2em;
}

.hi {
  margin: 0;
  font-size: 2em;
  font-weight: 400;
}

.name {
  margin: 0;
  font-size: 2.5em;
  font-weight: 700;
}

.top-text {
  border-left: 2px solid rgb(242, 164, 4); /* Porsche PTS Bahama Yellow :) */
  padding-left: 1em;
}

.highlight {
  color: rgb(242, 164, 4);
  font-weight: 700;
}

@media (max-width: 768px) {
  .top {
    width: 70%;
    flex-direction: column;
  }
  .top-box {
    margin-top: 2em;
  }
  .top-left {
    margin-right: 0;
    margin-bottom: 2em;
    width: 90%;
  }
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* This makes the columns equal width */
  margin-top: 5em;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.row-singular {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 5em;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .row {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .row-singular {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.showcase {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  margin: 0 2em;
  background-color: white;
  padding: 2em;
  border-radius: 10px;
}

.showcase-timeline {
  background-color: transparent; /* Remove inherited background color */
  align-self: center;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.showcase-title-text {
  margin: 0;
  font-size: 2em;
  font-weight: 700;
}

.showcase-subtitle-text {
  margin: 0;
  font-size: 1em;
  font-weight: 400;
  color: gray;
}

.showcase-content {
  margin-top: 1em;
}

@media (max-width: 768px) {
  .row {
    margin-top: 2em;
  }

  .row-singular {
    margin-top: 0; /* Row already adds margin to the bottom */
  }

  .showcase {
    width: 100%;
    margin: 0 0 1em 0;
  }
}
