body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: hsl(0, 0%, 8%);
    font-family: "Inter", sans-serif;
  }

  img {
    width: 150px;
    height: 150px;
    border-radius: 12rem;
    box-shadow: 2px 2px 5px rgb(168, 212, 212);
  }

  .main-container {
    padding: 2rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: hsl(0, 0%, 12%);
    color: hsl(0, 0%, 100%);
  }

  h2 {
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgb(195, 188, 176);
  }
  h2+p{
    color: hsl(75, 94%, 57%);
  }
  .social-media-button {
    width: 100%;
    padding: 5px;
  }

  button {
    width: 100%;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background-color: hsl(0, 0%, 20%);
    border: none;
    color: hsl(0, 0%, 100%);
    border-radius: 0.5rem;
  }

  button:hover{
    background-color:hsl(75, 94%, 57%);
    cursor: pointer;
  }