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

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

main {
  width: 600px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.container {
  padding: 4rem 2rem;
  min-height: 15rem;
  border-radius: 8px;
  position: relative;
  color: white;
  background-color: rgb(91, 74, 198);
  box-shadow: 7px 5px 16px #2a2929;
  visibility: hidden;
}

img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18%;
}

p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1.5em;
}

button {
  width: 70px;
  height: 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background-color: rgb(155, 171, 248);
}

button.active {
  background-color: rgb(91, 74, 198);
}
