*,
*:before,
*:after{
padding: 0;
margin:0;

}

body {
    background-image: linear-gradient(to bottom, pink , rgb(156, 66, 81));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
    flex-direction: column;
    font-size: 150%;
  }

  nav {
    margin-left: 5%;
    text-align: absolute;
    top: 10px;
    right: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
  }
  
  nav a {
    text-decoration: none;
    color: black;
    align-items:center;
  }
  
  h1 {
    margin-top: 10%;
    margin-bottom: 1px;
    font-size: 400%;
    font-family: 'Catherova', sans-serif;
  }

  h2 {
    margin-top: 0%;
    margin-bottom: 10%;
    font-size: 100%;
    font-family: 'Poppins', sans-serif;
  }

  .paragraph-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
  }
  
  a {
    position: relative;
    text-decoration: none;
    color: black;
    margin: 0%;
    font-family: "Poppins", sans-serif;
    padding: 5%;
  }
  

  a:after {
    content:'';
    height: 3px;
    width: 0;
    background: #4DB8AF;
    position: absolute;
    left: 0;
    bottom: 2%;
    transition: 0.5s;
  }

  a:hover:after {
      width: 2500%;

  }

  .line {
    display: inline-block;
    margin: 0 20%;
    border-left: 1px solid black;
    height: 500%;
    align-self: center;
  }