@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body,
header,
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body {
  font-family: 'Poppoins', sans-serif;
  color: white;
  background: linear-gradient(to right, #0a2540);
  margin: 0;
  height: 100vh;
  justify-content: center;
  gap: 20px;

  figure {
    overflow: hidden;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  h1 {
    margin: 0;
    font-size: 24px;
  }
  h2 {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 400;
  }
  main {
    gap: 20px;
    button {
      font-family: 'Poppoins', sans-serif;
      font-weight: 700;
      font-size: 16px;
      width: 200px;
      height: 50px;
      background-color: #fff;
      color: #333;
      border: none;
      border-radius: 10px;

      &:hover {
        cursor: pointer;
        background-color: #ffffff00;
        border: 1px solid white;
        color: white;
      }
    }
  }
}
