*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

html,
body{
    width:100vw;
    height:100vh;
    overflow: hidden;
    cursor: none;
}
body{
 
  

}
.enterText{
    border:0px solid red;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Neue Montreal";

}
nav{
    position: fixed;
    top:0;
    width:100%;
    display: flex;
    justify-content: space-between;
    padding: 1em;
}
nav div{
    display: flex;
    padding: 1em;
    gap:10em;
}
nav div a{
    text-decoration: none;
    color:#000;
    font-family: "Neue Montreal";
}

.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 2em 40%;
    border:0px solid red;
    margin-top: 20em;

    

}
.header .h1{
    position: relative;
    font-family: "Carpenter";
    font-size: 6vw;
    color:white !important;
    line-height: 1.125;
    border:0px solid red;
    font-weight: 800;
    font-stretch: expanded;
  

}
#canvas {
    z-index: 0;
    position: absolute;
    top:0;
    left:0;
    bottom: 0;
    right: 0;
    opacity: 0.2;
    background: rgba(225, 179, 130,0.8);
height: 100vh;
width: 100vw;
border:0px solid red
  
}

.container{
    border:0px solid red;
    height: 100vh;
}
.hero{
    position: relative;
    width: calc(100vw-4em);
    height: 100%;
    margin:0 auto;
    border-radius:10px;
    border:1px solid #1a1a1a;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay{
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index:2;
    background-color: #1a1a1a;
    display: flex;
}
.bar{
    width: 10vw;
    height: 105vh;
    background-color: #1a1a1a;
}
.counter{
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
      color: white;
    padding: 0.2em 0.4em;
    font-size: 20vw;
    font-family: "Carpenter";
}

.hover-link {
    
    text-decoration: none;
    color: black;
  
  }
  
  /* Example of a custom cursor image */
  @keyframes pulse {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.1);
    }
  }
  
  .custom-cursor {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 12px;
    animation: pulse 1s infinite alternate;
  }

  .cursor {
   
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: red;
    mix-blend-mode: difference;
    transition: transform 0.3s ease;
}

a:hover{
    cursor: none;
}

a:hover ~ .cursor {
    transform: translate(-50%, -50%) scale(10) !important;
}

@media(min-width: 992) {
    nav {
          display: flex;
          justify-content: space-around;
    }
}

@media(max-width: 992) {
    nav {
          top: 30%;
    }

    .hover-this {
          width: 100%;
          padding: 20px 0;
          display: inline-block;
    }
    .enterText{
        border: 0px solid red;
        margin-bottom: 100px;
    }
    
}
  
