@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: "IBM Plex Mono", monospace;
  background-color: #e3e3db;
}

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hover-img{
    position: relative;
    width: 600px;
    height: 600px;
    overflow: hidden;
}

.hover-img img{
    width: 100%;
    height: 100%;
}


.grid-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.grid-block{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    color: #e3e3db;
    font-family: "IBM Plex Mono", monospace;
    opacity: 0;
    font-size: 20px;
    font-weight:400;
}

.grid-block.active{
    opacity: 1;
}