@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

::-webkit-scrollbar{
    display: none;
}

*{
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f2f2f2;
}

h1{
    font-weight: 500;
    user-select: none;
    display: flex;
}

h1:hover .pir{
    color: red;
    text-shadow: 2px 2px 9px red;
}

h1:hover .zol{
    color: green;
    text-shadow: 2px 2px 9px green;
}

.letter {
    transition: 0.5s;
}

.letters p:nth-child(1) { transition-delay: 0s; }
.letters p:nth-child(2) { transition-delay: 0.1s; }
.letters p:nth-child(3) { transition-delay: 0.2s; }
.letters p:nth-child(4) { transition-delay: 0.3s; }
.letters p:nth-child(5) { transition-delay: 0.4s; }
.letters p:nth-child(6) { transition-delay: 0.5s; }

img{
    position: absolute;
    transform: rotate(30deg);
    right: -15%;
    top: -5%;
    z-index: -1;
}