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

html {
  font-size: 14px;
}

body {
  display: flex;
  font-family: system-ui;
  background: #222;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  background-image: radial-gradient(circle, #222, #111);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100svh;
}

a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.title {
  margin-top: 16px;
}

h1 {
  font-family: "Bangers", system-ui;
  font-size: 33px;
  font-weight: 400;
  font-style: normal;
  margin-top: 9px;
  color: #fff;
  letter-spacing: 1px;
}

.small {
  font-size: 13px;
  text-decoration: underline;
  margin-top: 8px;
}

.title + .small {
    margin-top: 16px;
}

.container {
  width: 100%;
  max-width: 375px;
  margin: auto;
  padding: 32px;
}

main {margin-top: 40px;}

.profile img {
  width: 96px;
  height: 96px;
  border-radius: 100vw;
}

.button {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  padding: 7px 14px;
  border-radius: 7px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.button:not(:first-child) {
  margin-top: 24px;
}

.button:hover {
  background: #fff;
  color: #222;
}