@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  font-family: 'DynaPuff', cursive;
}

h1,
p,
img {
  margin: 0.2rem 0;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

main > .profile-img {
  display: block;
  width: 200px;
  height: 200px;
  border: 2px solid #000;
}
