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

a {
  text-decoration: none;
}

body {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  background: #0f051d;
  font-family: "Roboto", sans-serif;
}

.container {
  text-align: center;
  width: 300px;
}

img {
  width: 100%;
}

img.avatar {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  padding: 3.7px;
  border: #4263eb solid 4px;
}

h1 {
  font-size: 32px;
  color: #edf2ff;
  margin-top: 24px;
  margin-bottom: 8px;
}

.username {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  color: #edf2ff;
  opacity: 0.8;
  font-size: 18px;
}

ul {
  list-style: none;
  margin: 48px 0;
}

ul li a {
  height: 53px;

  display: flex;
  align-items: center;
  justify-content: center;
  background: #6416ff;
  color: white;
  text-transform: uppercase;
  font-size: 14px;

  margin-bottom: 16px;
  border-radius: 6px;
  transition: background 400ms;
}

ul li a:hover {
  background: #364fc7;
}

footer {
  font-weight: 400;
  font-size: 12px;
  color: #edf2ff;
  opacity: 0.6;
  transition: opacity 400ms;
}

footer:hover {
  opacity: 1;
}

footer a {
  color: #edf2ff;
}
