div.card_holder {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 2%;
  column-gap: 3%;
}
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap");
span.card {
  background-color: var(--col-darker);
  border: 0.5px var(--col-primary) solid;
  border-radius: 15px;
  padding: 2.5%;
  width: 25rem;
  height: 20rem;
}

span.card hr {
  border: none;
  border-bottom-width: 10rem;
}
span.card > p {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  line-height: 1.4em;
}

span.card > p::before {
  content: "<h3>";
  opacity: 0.3;
  color: white;
  display: block;
  margin-left: -35px;
  font-weight: normal;
  font-size: 14px;
}
span.card > p::after {
  content: "<h3>";
  opacity: 0.3;
  color: white;
  display: block;
  margin-left: -35px;
  font-weight: normal;
  font-size: 14px;
}
span.card::after {
  opacity: 0.3;
  content: "";
  width: 0;
  height: 65%;
  position: absolute;
  background-color: white;
  border: 0.1px solid white;
  bottom: 17%;
  left: 17px;
}

.ht {
  border-bottom: 10px solid #ff33ff;
}

.htr {
  border-bottom: 10px solid #3355ff;
}
/*TODO: Make the cards look nicer globably.*/
@media only screen and (max-width: 700px) {
  .center_aligned {
    text-align: center;
    position: absolute;
  }
  div.card_holder {
    font-size: 1rem;
    width: 30rem;
    text-align: center;
  }
  span.card {
    position: relative;
    text-align: center;
  }
  span.card hr {
    width: rem;
    text-align: center;
  }
  .h {
    position: relative;
    text-align: center;
  }
}
.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services-card {
  margin: 1rem;
  height: 500px;
  width: 300px;
  border-radius: 4px;
  background-image: url("webpic.png");
  background-size: contain;
  border: 4px solid var(--col-primary);
  position: relative;
}
.services h2 {
  background-color: var(--col-accent-1-light);
  margin-bottom: 5rem;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  font-size: 2.5rem;
}
.services-card button {
  color: var(--col-primary);
  padding: 10px 20px;
  border: none;
  background: var(--col-accent-1-light);
  position: absolute;
  top: 440px;
  left: 30px;
  font-size: 1rem;
  cursor: pointer;
}

.services-card:hover {
  transform: scale(1.075);
  transition: 0.2s ease-out;
}

@media only screen and(max-width: 500) {

    .services {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
  }

  .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .services-card {
    margin: 1rem;
    height: 500px;
    width: 300px;
    border-radius: 4px;
    background-image: url("webpicv2.png");
    border: 4px solid var(--col-primary);
    background-size: contain;
    position: relative;
  }
  .services h2 {
    background-color: var(--col-accent-1-light);
    margin-bottom: 5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 2.5rem;
  }
  .services-card button {
    color: var(--col-primary);
    padding: 10px 20px;
    border: none;
    background: var(--col-accent-1-light);
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
  }

  .services-card:hover {
    transform: scale(1.075);
    transition: 0.2s ease-out;
  }

  .hero > h{
    font-size: 1rem;
  }
}
