body {
  width: 100%;
  max-width: 700px;
  background-color: #000;
  margin: 30px auto;
  
}

h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 71px;
  color: #f5f5f7;
  margin-top: 5px;
  line-height: 1.1em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 64px;
  color: #f5f5f7;
  margin-top: 5px;
  line-height: 1.1em;
  font-weight: 700;
  text-align: center;
  padding-top: 50px;
}

.h1-highlight {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 71px;
  margin-top: 50px;
  line-height: 1.3em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(to right, #E7B403 0%, #8D23E6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 17px;
  color: #f5f5f7;
}

a {
  color: #f5f5f7;
  text-decoration: none;
  font-weight: 600;
}

.intro {
  font-size: 25px;
}

.footer {
  padding-top: 40px;
  text-align: center;
  font-size: 15px;
  line-height: 1.8em;
}

ul {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 17px;
  color: #f5f5f7;
}

.appTitle {
  margin-top: 1%;
  text-align: center;
  font-size: 17px;
}

.appicon {
  filter: drop-shadow(0 0 0.75rem color(srgb 0.462 0.419 0.265));
}

.intro {
  font-size: 51px;
  text-align: center;
  line-height: 1.3em;
  font-weight: 500;
}

.intro-highlight {
  font-size: 51px;
  text-align: center;
  line-height: 1.3em;
  font-weight: 600;
  color: #E7B403;
}

.appstore {
  margin-top: 30px;
  margin-bottom: 30px;
}

.imgcard {


}

.textcard {
  color: #000;
  font-size: 19px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: bold;
}



* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Float 2 columns side by side */
.column {
  float: left;
  width: 50%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {
  margin: 0 -5px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  padding-bottom: 16px;

}

/* Style the cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  /* this adds the "card" effect */
  padding: 16px;
  height: 250px;
  text-align: center;
  background-color: #f1f1f1;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}






main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
/*  height: 100vh; */
  width: 100%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-card {
  width: var(--size);
  height: var(--size);
  border-radius: var(--radius);
  position: relative;
  background-size: cover;
  margin: calc(var(--size) * 20 / 100);
}
.image-card:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  border-radius: var(--radius);
  z-index: -1;
  filter: blur(12px);
  opacity: 0.6;
  left: 50%;
  transform: translate(-50%, 10%);
}
:root {
  --size: 90px;
  --radius: calc(var(--size) * 20 / 100);
}







/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }

  body {
    width: 90%;
  }

  .appstore {
    width: 50%;
  }

  h1 {
    font-size: 65px;
  }

  .h1-highlight {
    font-size: 65px;
  }

  .intro {
    font-size: 45px;
  }

  .intro-highlight {
    font-size: 45px;
  }
  .row:after {
  padding-bottom:0px;
  }
  .card{
    height: 180px;
  }
  .appicon {
  width: 30%;
  }
  main {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  :root {
    --size: 50px;
    --radius: calc(var(--size) * 20 / 100);
  }
}