:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

html {
  height: 100%;
  width: 100%;
}

body {
  background-color: #E5F6FF;
  font-family: 'Inter', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

a {
  width: 90%;
  display: inline-block;
  margin-bottom: 20px;
  margin-left: 20px;
}

.appcard {
  font-family: 'Inter';
  color: black;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  align-items: flex-start;
  box-sizing: border-box;
}

.appcard img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  vertical-align: 50%;
}

.appcard .text-content {
  flex-grow: 1;
}

.appcard h6 {
  font-weight: 340;
  opacity: 0.7;
  margin-top: -18px;
}

.appcard p {
  font-weight: 400;
  opacity: 0.95;
  margin-top: -16px;
}

h2 {
  font-weight: 450;
 
}

a {
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  a {
    flex: 100%;
    max-width: 100%;
  }
}