html { 
    background: url("/img/bg.jpg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: 'Inter', sans-serif;
  }
  .row-with-bg{
    background-color:black;
    font-weight: 900;
    opacity:0.7;
      
      top: 30%;
      position: absolute;
      padding:50px;
      border-radius:  10rem 0;
  }
  .row > p{
      opacity:1;
      color:white;
  }
  a{
      text-decoration:none;
  }
  a:hover{
    text-shadow:0px 0px 30px white;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }