*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
}
body {
  min-height: 100vh;
  background-color: #bbdefb;
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

b {
  font-weight: bold;
}

.flex-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 2em 0px 2em 0px;
  gap: 5px;
}

.vcard {
  width: clamp(350px, 400px, 500px);
  margin: auto;
  background: #f2f1ee;
  padding: 8px;
  box-shadow: 2px 2px 3px #999;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

.vcard:not(:first-child) {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.vcard > h1 {
  font-size: 2em;
  font-weight: bold;
  margin: 0.2em 0;
}
.vcard > h2 {
  font-size: 1.5em;
  font-weight: 200;
}
.vcard > div {
  height: 100%;
}
.vcard p {
  padding-top: 0.6em;
}

.vcard:not(:last-child) a {
    text-decoration: underline;
    color: initial;
}
.vcard:last-child {
  margin-top: 0.2em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: transparent;
  box-shadow: none;
}

.button {
    background-color: #0c9;
    color: #fff;
    border-radius: 50px;
    box-shadow: 2px 2px 3px #999;
    padding: 0.6em;
    font-size: 1.2em;
    text-decoration: none;
}

.btn-holder {
  width: 200px;
  height: 3em;
  margin: auto;
  margin-top: 1em;
  background-color: #0c9;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}
svg.icon, img.icon {
  width: 3em;
  margin-right: 1em;
}
