
/* land-page */
:root {
    --button-color: hsl(82, 100%, 42%);
    --head-color: hsl(0, 0%, 15%);
  }

.land-page {
    width: 100%;
    height: 100vh; 
    overflow: hidden;
    position: relative;
}
.list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.land-page .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.land-page .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.land-page .list .item .content{
    position: absolute;
    top: 30%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.land-page .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.land-page .list .item .title,
.land-page .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}
.land-page .list .item .topic{
     color: var(--button-color); 

}
.land-page .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.land-page .list .item .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}
.land-page .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid var(--button-color);
    color: var(--button-color);
}

/* animation */
.land-page .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.land-page .list .item:nth-child(1) .content .author,
.land-page .list .item:nth-child(1) .content .title,
.land-page .list .item:nth-child(1) .content .topic,
.land-page .list .item:nth-child(1) .content .des,
.land-page .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.land-page .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.land-page .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.land-page .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.land-page .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}


