body {
    margin: 0;
    padding: 0;
    background-color: #0D0D0D;
  }
  
  header {
    margin: 10px;
  }
  
  header img {
    width: 100%; 
    margin-bottom: 110px;
    margin-top: 40px;

  }

  .top-right-button {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
  }
  
  .top-right-button svg {
    display: block;
  }

.button:hover {
  color: rgb(209, 211, 211);
}


  @font-face {
    font-family: 'helvetica';
    src: url('images/HelveticaNeueLTStd-BlkEx.otf') format('opentype'),
         url('images/HelveticaNeueLTStd-ThEx.otf') format('opentype');
}

  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 20vw;
    margin: 10%; 
  }
  
  .text {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 13vw;
    letter-spacing: -.01em;
    line-height: 90%;
    margin: 0;
  
    width: 100%;
    color: rgba(255, 255, 255, 0.886);
    background: linear-gradient(to right, #b6b6b6, #b6b6b6) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    transition: background-size cubic-bezier(.1,.5,.5,1) 0.5s;
  
    border-bottom: 1px solid #4f4f4f;
  
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;

    cursor: none ; /* Hide mous cursor */

  }  .text2 {
    font-family: Helvetica, sans-serif;
    font-size: 3vw;
    letter-spacing: -.01em;
    line-height: 112%;
    margin: 0;
  
    width: 100%;
    color: rgba(73, 73, 73, 0.886);
    background: linear-gradient(to right, #b6b6b6, #b6b6b6) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    transition: background-size cubic-bezier(.1,.5,.5,1) 0.5s;
  
    
  
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
  }



  span {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: absolute;
   
    width: 100%;
    height: 100%;
    background-color: #686868;
    color: #0D0D0D;
    
    clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
    transform-origin: center;
    transition: all cubic-bezier(.1,.5,.5,1) 0.4s;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .text:hover > span {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }

/*image mouse thingy does nothign;((((*/
  
.hover-image {
  position: absolute;
  display: none;
  pointer-events: none;
}
        