@font-face {
    font-family: 'basisgrotesquereg';
    src: local('basis-grotesque-off-white-pro.woff2'),
    url('basis-grotesque-off-white-pro.woff2') ;
   
    font-weight: normal;
    font-style: normal;
    
    }
    @font-face {
        font-family: 'basispro';
        src: local('basis-grotesque-regular-pro.woff2'),
        url('basis-grotesque-regular-pro.woff2') ;
        font-weight: normal;
        font-style: normal;
        
        }
  
  body {
    font-family: 'basispro', sans-serif;
    color: black;
    background: white;
    padding-top: 5%;
    width: 100vw; }
  
  header {
    margin-left: 7%;
    font-family: 'basispro', sans-serif; 
    margin-right: 7%;
    height: 100%; }
    header nav.menu {
      display: flex; }
      header nav.menu ul {
        margin: 0;
        padding: 0; }
        header nav.menu ul li {
          list-style-type: none;
          font-size: 20px;
          float: left;
          margin-right: 30px;
          line-height: 30px; }
          header nav.menu ul li a {
            color: black;
            text-decoration: none; }
  /* Style the footer */
.footer {
    background-color:black;
    margin-left: 7%;
    margin-right: 7%;
    height: 100%; }
    footer nav.menu {
      display: flex; }
      footer nav.menu ul {
        margin: 0;
        padding: 0; }
        footer nav.menu ul li {
          list-style-type: none;
          font-size: 20px;
          float: left;
          margin-right: 30px;
          margin-top: 100px;
          line-height: 30px; }
          footer nav.menu ul li a {
            color: white;
            text-decoration: none; }
 
 
            .main-container {
            margin-left: 7%;
            font-family: 'basispro', sans-serif; 
            margin-right: 7%;
            margin-top: 80px; }
            .main-container h1 {
            font-family: 'basispro', sans-serif; 
            font-size: 85px;
            margin-left: -0.5%;
             }
      @media only screen and (max-width: 600px) {
        .main-container h1 {
          font-size: 50px; } }

        .main-container h2 {
            font-family: 'basispro', sans-serif; 
            font-size: 18px;
        line-height: 25px; } 


    .main-container p {
      margin-top: 30px;
      font-size: 23px;
      line-height: 30px; }
    .main-container .container-inside {
      margin-top: 50px; }
      .main-container .container-inside h2 {
        font-family: 'basispro', sans-serif;
        font-size: 23px;
        display: block;
        border-bottom: 1px solid black;
        height: 30px; }

        .main-container h3 {
            font-family: 'basispro', sans-serif;
            margin-top: 30px;
            font-size: 23px;
            font-weight: normal;
           }
      .main-container .container-inside .letterset {
        margin-left: 100px;
        margin-right: 100px;
        word-break: break-all;
        padding-top: 40px;
        padding-bottom: 40px;
        font-size: 70px;
        text-align: center;
        line-height: 85px; }
        @media only screen and (max-width: 600px) {
            .column {
                width: 100%;}
          .main-container .container-inside .letterset {
            margin-left: 0px;
            margin-right: 0px;
            font-size: 55px;
            line-height: 70px; } }


 

.profile-pic {
    width: 20px;
    height: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;}


    #myImg {
        border-radius: 50px;
        cursor: pointer;
        transition: 0.3s;
        width: 20px;
        height: 20px;
        position: relative;
        bottom: -3px;
        overflow: hidden;
        border-radius: 50%;
      }
      
      #myImg:hover {
        opacity: 0.7;
      }
      
      .modal {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Stay in place */
        z-index: 1;
        /* Sit on top */
        padding-top: 100px;
        /* Location of the box */
        left: 0;
        top: 0;
        width: 100%;
        /* Full width */
        height: 100%;
        /* Full height */
        overflow: auto;
        /* Enable scroll if needed */
        background-color: rgb(0, 0, 0);
        /* Fallback color */
        background-color: rgba(90, 90, 90, 0.1);
        /* Black w/ opacity */
      }
      
      .modal-content {
        margin: auto;
        display: block;
        width: auto;
        max-height: 300px;
       
      }
      
      #caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color:black;
        padding: 10px 0;
        height: 150px;
      }
      
      .modal-content,
      #caption {
        animation-name: zoom;
        animation-duration: 0.8s;
      }
      
      @keyframes zoom {
        from {
          transform: scale(0)
        }
        to {
          transform: scale(1)
        }
      }
      
     /* .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
      } */
      
      .close:hover,
      .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
      }
      
      @media only screen and (max-width: 700px) {
        .modal-content {
          width: 100%;
        }
      }