@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
:root {
  font-size: clamp(8px, 1.5vw, 3vw);
  font-family: 'Varela Round', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
}

body {
  background: #0ff;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

h1 {
  font-size: 5vw;
  font-size: clamp(2rem, 5vw, 6vw);
  color: #444;
  text-align: center;
}

main {
  background: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
  border-radius: .5rem;
  -webkit-box-shadow: 0 0 .5rem #111;
          box-shadow: 0 0 .5rem #111;
}

#img {
  border-radius: 50%;
  height: 8rem;
  width: 8rem;
  overflow: hidden;
  outline: .2rem solid green;
  outline-offset: -.15rem;
  -webkit-box-shadow: 0 0 0.5rem #014b01;
          box-shadow: 0 0 0.5rem #014b01;
}

#img img {
  height: 8rem;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

#name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.6em;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: capitalize;
}

#subtitle {
  opacity: .7;
  text-align: center;
  font-size: .9rem;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0.6em;
  margin-top: 0;
}

#about {
  text-align: center;
}

.buttons {
  margin-top: 0.6em;
}

.buttons button {
  border: none;
  background: none;
}

svg {
  fill: grey;
}

svg:hover {
  fill: black;
}

#surprise {
  padding: 1em;
  margin-top: 0.6em;
  font-size: .9rem;
}
/*# sourceMappingURL=style.css.map */