
body{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-image: url(../images/splatter22.jpg);
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 0vh;
    
}

.words{
    color: rgb(0, 0, 0);
    position: relative;
    text-align: center;
    user-select: none;
    text-shadow: rgb(207, 207, 207) 10px 0 20px;
    transition: text-shadow 0.3s ease;
    transition: scale 0.3s ease;
    margin-bottom: 18vh;
    animation: pulse 1s infinite alternate;

}
.words:hover{
    scale: 1.1;
}
@keyframes pulse {
    from {
        text-shadow: rgb(255, 255, 255) 10px 0 100px
                    ,rgb(255, 255, 255) 0 10px 100px
                    ,rgb(255, 255, 255) -10px 0 100px
                    ,rgb(255, 255, 255) 0 -10px 100px;
    }
    to {
        text-shadow: rgb(255, 255, 255) 10px 0 200px
                    ,rgb(255, 255, 255) 0 10px 200px
                    ,rgb(255, 255, 255) -10px 0 200px
                    ,rgb(255, 255, 255) 0 -10px 200px;
    }
  }

h1 {
    font-size: 7vh;
}

h2 {
    font-size: 5vh;
}

h3 {
    font-size: 4vh;
}

h4 {
    font-size: 3vh;
}

a {
    position: fixed;
    bottom: 10px; /* Adjust the bottom value to position it from the bottom */
    left: 50%;
    transform: translateX(-50%);
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 5px;
    font-size: 3vh;
    border: 10px solid rgb(0, 0, 0);
    border-radius: 10px;
    box-shadow: rgb(0, 0, 0) 0px 0px 20px;
    transition: background-color 0.3s ease;
  }
  
  a:hover {
    box-shadow: rgb(255, 255, 255) 0px 0px 100px;
    background-color: gray;
  }

  .shadow{
    position: fixed;
    bottom: 0px; /* Adjust the bottom value to position it from the bottom */
    left: 50%;
    width: 40%;
    height: 100%;
    transform: translateX(-50%);
    background-image: url(../images/transparent.png);
    background-size: contain;
    filter: contrast(2);
    z-index: -999;
  }



  