@import url('https://fonts.googleapis.com/css2?family=Federo&display=swap');
.lifestyleBody{
    height: 100vh;
    margin: 0px;
    padding: 0px;
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(../images/lifestyle.jpg);
    background-size: cover;
    background-repeat: repeat;
    user-select: none;        /* Modern browsers */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;    /* IE/Edge */
}
.content{
    padding: 120px 50px 50px 50px;
}
.content .header{
    font-size: 100px;
    text-transform: capitalize;
    font-family: "Federo", serif;
    font-weight: 600;
    font-style: normal;
    color: #000;
}
.content .linksBox{
    margin-top: 20px;
    display: grid;
    grid-template-columns: auto auto auto auto;
    column-gap: 20px;
    row-gap: 20px;
}
.content .linksBox a{
    text-decoration: none;
    color: #000;
    background-color: rgba(200, 200, 200, 0.8);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    contain: content;
    opacity: 0;
}
.content .linksBox a:hover{
    transform: rotateY(360deg);
}
.content .linksBox .health{
    animation-name: showHealth;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes showHealth {
    100%{
        opacity: 1;
    }
}
.content .linksBox .travel{
    animation-name: showTravel;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}
@keyframes showTravel {
    100%{
        opacity: 1;
    }
}
.content .linksBox .fashion{
    animation-name: showFashion;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
}
@keyframes showFashion {
    100%{
        opacity: 1;
    }
}
.content .linksBox .food{
    animation-name: showFood;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.9s;
}
@keyframes showFood {
    100%{
        opacity: 1;
    }
}
.content .linksBox .events{
    animation-name: showEvents;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
}
@keyframes showEvents {
    100%{
        opacity: 1;
    }
}
.content .linksBox a img{
    width: 50px;
}
.content .linksBox a span{
    margin-left: 10px;
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}
@media (max-width: 1200px) {
    .content{
        padding: 80px 40px 50px 40px;
    }
    .content .header{
        font-size: 85px;
    }
    .content .linksBox a img{
        width: 40px;
    }
    .content .linksBox a span{
        margin-left: 10px;
        font-size: 20px;
        font-family: sans-serif;
        font-weight: 500;
        text-transform: capitalize;
    }
}
@media (max-width: 1000px) {
    .content{
        padding: 70px 30px 30px 30px;
    }
    .content .header{
        font-size: 80px;
    }
    .content .linksBox{
        grid-template-columns: auto auto auto;
    }
    .content .linksBox a img{
        width: 40px;
    }
    .content .linksBox a span{
        font-size: 19px;
    }
}
@media (max-width: 800px) {
    .lifestyleBody{
        background-position: center;
    }
    .content{
        padding: 120px 20px 20px 20px;
    }
    .content .header{
        font-size: 60px;
    }
    .content .linksBox{
        grid-template-columns: auto auto;
    }
    .content .linksBox a img{
        width: 35px;
    }
    .content .linksBox a span{
        font-size: 18px;
    }
}
@media (max-width: 650px) {
    .content{
        padding: 60px 10px 20px 10px;
    }
    .content .header{
        font-size: 50px;
        margin-top: 50px;
        text-shadow: 0px 2px 1px #fff;
    }
    .content .linksBox{
        grid-template-columns: auto;
        margin-top: 20px;
    }
    .content .linksBox a img{
        width: 30px;
    }
    .content .linksBox a span{
        font-size: 17px;
    }
}