@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@400;500;700&display=swap");

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

body {
  font-family: "poppins", sans-serif;
  color: white;
  background: linear-gradient(90deg,rgba(2, 0, 36, 1) 2%, rgba(9, 9, 121, 1) 36%, rgba(20, 185, 183, 1) 100%);
  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: 60;
font-size: 24px;
  }

  h2 {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: : 400;
  }

  main {
    gap: 20px;
        button {
        font-family: "poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        width: 200px;
        height: 50px;
        background-color: #FFFFFF;
        color: #333;
        border: none;
        border-radius: 10px;

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

footer {
    font-family: poppins, sans-serif;
    color: white;
    text-decoration: none;
    a {
        color: white;
        text-decoration: none;
    }
    a hover {
        color: white;
    }
}