#fullpagemenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    padding-top: 0;
    overflow: hidden;
    background-color:black;
    
    z-index: 10;
    display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
align-content: flex-start;
  }
  
  .fullpagemenulinks {
    display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
align-content: center;
    width: 100%; 
    height: calc(100%/5);
    
    
    text-align: center;
    color: yellow;
    text-decoration: none;
  }

  .fullpagemenulinks:hover{
    scale: 1.1;
  }
  
  @media (max-width: 768px) {
    #fullpagemenu a {
      font-size: 3rem;
    }
  }
  