html {
  box-sizing:border-box;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-wrap: normal;
  font-variant-ligatures: common-ligatures;
  -webkit-font-feature-settings: "liga", "clig";
  -moz-font-feature-settings: "liga", "clig";
  font-feature-settings: "liga", "clig";
  -webkit-font-feature-settings: "liga", "lnum";
  -moz-font-feature-settings: "liga", "lnum";
  font-feature-settings: "liga", "lnum";
  position: relative;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  height: 100%;
  margin-top: 0 !important;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  background-color: #f2f2f6;
  background-size: 390px;
  background-repeat: no-repeat;
  background-position: center -60px;
  padding: 0;
  margin: 0;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
}
a {
  text-decoration: none;
  color: #3478f6;
}
#card {
  max-width: 450px;
  margin: 0 auto;
  padding: 40px 15px;
}
.images {
  display: flex;
  gap: 0px;
  justify-content: center;
  margin-bottom: 10px;
}
.image {
  border-radius: 50%;
  width: 140px;
  display: block;
  background: linear-gradient(0deg, rgba(134,138,147,1) 0%, rgba(165,169,181,1) 100%);
  height: 140px;
  object-fit: cover;
  margin-right: -10px;
  margin-left: -10px;
}
.name {
  text-align: center;
  font-size: 30px;
}
.organisation, .workTitle {
  text-align: center;
  color: #707070;
}
.contactfield {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 14px;
  display: block;
}
.contactfield:first-of-type {
  margin-top: 23px;
}
.label {
  color: #000;
  font-size: 0.87em;
  display: block;
  margin-bottom: 4px;
}
.contactfield.download {
  max-width: fit-content;
  margin: 25px auto 0;
  background-color: #3478f6;
  color: #fff;
  display: block;
  padding: 13px 20px 15px 43px;
  font-weight: 700;
  position: relative;
  font-size: 0.95em;
}
.download svg {
  width: 28px;
  position: absolute;
  left: 12px;
  top: 9px;
}