body {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-image: url(../images/moody.jpg);
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 0vh;
    animation: pulse 3s infinite alternate;
    box-shadow: inset rgb(0, 0, 0) 0px 0px 400vh;
}


@keyframes pulse {
    from {
        background-size: 100vw 100vh;
    }
    to {
        background-size: 102vw 102vh;
    }
  }

.particle {
    position: absolute;
    width: 1vw;
    height: 1vh;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    animation: moveParticle 1s ease-in-out;;
    box-shadow: rgb(0, 0, 0) 0px 0px 10px;
}

@keyframes moveParticle {
    to {
    transform: translate(-40vw,40vh)
    }
}

a {
    z-index: 999;
    position: absolute;
    top: 20px; /* Adjust the top value to position it from the top */
    right: 20px; /* Adjust the right value to position it from the right */
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 5px;
    font-size: 2.5vh;
    border: 10px solid rgb(0, 0, 0);
    border-radius: 10px;
    box-shadow: rgb(0, 0, 0) 0px 0px 20px;
    transition: border 0.3s ease, background-color 0.3s ease;
}

a:hover {
    box-shadow: rgb(255, 255, 255) 0px 0px 100px;
    background-color: gray;
}

h1 {
    color: black;
    position: relative;
    text-align: left;
    font-size: 4vh;
    margin-bottom: 2vh;
    margin-left: 20px;
    text-shadow: rgb(96, 96, 96) 0 0 30px;
  }


