@import url('https://fonts.googleapis.com/css2?family=Kablammo&family=Poppins:wght@300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all .3s ease;
}

/* font-family: 'Kablammo', cursive; */

.hero{
    width: 100%;
    height: 100vh;
    background-image: url('imgs/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 180px;
}

.nav .logo{
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav .logo h1{
    z-index: 1;
}

.nav .logo img{
    position: relative;
    left: 60px;
    top: 1px;
    bottom: 20px;
}

.shap{
    animation: rotat 2s infinite linear;
    margin-top: -1000px;

}

@keyframes rotat{
    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

.nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.nav ul li a{
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    margin: 0px 20px;
}

.nav ul li a:hover{
    color: #1221c1c4;
}

.nav ul li .active{
    color: #1221c1c4;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 10px;
}

.content .left img{
    width: 490px;
    margin-right: 90px;
}

.content .right h4{
    text-transform: uppercase;
    color: #1221c1c4;
}

.content .right h1{
    font-size: 70px;
}

.content .right button{
    margin-top: 20px;
    padding: 13px 36px;
    background: #1221c1c4;
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
}

.content .right button:hover{
    background: #1221c19f;
    
}

.social{
    position: absolute;
    top: 44%;
    right: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.social i{
    font-size: 30px;
    margin: 20px 0px;
    cursor: pointer;
}

.social i:hover{
    transform: scale(1.2);
}

.shap-container{
    position: absolute;
    top: 27%;
    right: 17%;
}