html,
body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  background: #F6F6F6;
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 25px;
  font-family: sofia-pro, sans-serif;
  color: #555555;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 400px;
  max-width: 100%;
  background: #ffffff;
  border-radius: 30px;
  padding: 70px 50px;
  box-shadow: 0 36px 124px rgba(0,0,0,.03),0 1px 3px rgba(0,0,0,.01),0 8px 10px rgba(0,0,0,.02),0 40px 80px rgba(0,0,0,.03);
}

a {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-drag: none;
  -webkit-user-drag: none;
}

a:not(.button) {
  position: relative;
  color: #000000;
  text-decoration: none;
}

a:not(.button):after {
  position: absolute;
  content: '';
  background: #000000;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -2px;
  transition: all ease .3s;
}

a:hover:after {
  width: 100%;
}

img {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-drag: none;
  -webkit-user-drag: none;
  margin-bottom: 30px;
}

h1 {
  font-family: sofia-pro, sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  color: #222222;
}

h2 {
  font-family: sofia-pro, sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 50px;
  color: #555555;
}

svg {
  margin-right: 10px;
}

svg path {
  fill: #000000;
}

div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 25px;
}

div a {
  margin-right: 3px;
}

.button {
  display: inline-block;
  align-self: center;
  font-weight: 700;
  background: #F3F3F3;
  color: #222222;
  margin-top: 25px;
  padding: 15px 70px;
  text-decoration: none;
  border-radius: 50px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-drag: none;
  -webkit-user-drag: none;
  transition: transform .2s cubic-bezier(.215,.61,.355,1), background-color .2s ease;
}

.button:hover {
  background: #f0f0f0;
}

.button:active {
  transform: scale(.95);
  background: #dddddd;
}

@media (max-width: 992px) {
  body {
    padding: 20px;
  }
  .wrapper {
    padding: 50px 30px;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background: #F6F6F6;
    color: #555555;
  }

  .wrapper {
    background: #ffffff;
  }

  a:not(.button) {
    color: #000000;
  }

  a:not(.button):after {
    background: #000000;
  }

  h1 {
    color: #222222;
  }

  h2 {
    color: #555555;
  }

  svg path {
    fill: #000000;
  }

  .button {
    background: #f5f5f5;
    color: #222222;
  }

  .button:hover {
    background: #f0f0f0;
  }

  .button:active {
    background: #dddddd;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: #121212;
    color: #CCCCCC;
  }

  .wrapper {
    background: #212121;
  }

  a:not(.button) {
    color: #ffffff;
  }

  a:not(.button):after {
    background: #ffffff;
  }

  h1 {
    color: #ffffff;
  }

  h2 {
    color: #CCCCCC;
  }

  svg path {
    fill: #ffffff;
  }

  .button {
    background: #333333;
    color: #ffffff;
  }

  .button:hover {
    background: #555555;
  }

  .button:active {
    background: #777777;
  }
}
