#hero{
    z-index: 3;
    top: 0;
    width: 100%;
    height: 100vh;
   margin-bottom: 10vh;
   position: relative;
  background-color: #e6deda;
}
.jadoo{
    position: relative;
    left:50%;
    top:75%;
    transform: translate(-50%,-50%);
}

#hero h1{
    text-align: center;
    position: relative;
    font-size: 40px;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
}

#hero p{
    text-align: center;
    position: relative;
    padding-top: 10px;
    font-size: 15px;
    left:50%;
    font-weight: 300;
    top:50%;
    transform: translate(-50%,-50%);
}
#hero p>span{
    font-style: italic;
    font-weight: 600;
    transition: transform 0.5s ease-in-out;
}

#hero svg{
    position: relative;
    top:70%
}
.jadoo:hover>svg {
    animation: moveDown 0.5s forwards;
    animation-iteration-count: 3;
}

@keyframes moveDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px);
    }
    100% {
        transform: translateY(0);
    }
}

#hero h2{
        text-align: center;
        position: relative;
        font-size: 14px;
        left:50%;
        top:72%;
        margin-top: 10px;
        font-weight: 550;
        width: fit-content;
        padding-bottom: 2px;
        border-bottom: 1.5px solid;
        transform: translate(-50%);
    }

.items{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 4;
}    

.item{
    position: absolute;
    width: 150px;
    height: 200px;
    background-color: #000;
    overflow: hidden;
}

.item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:400px) {
    .jadoo{
        top: 70%
    }
}