*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy', sans-serif !important;
    color:white;
}

html,body{
    width: 100%;
    height: 100%;
}
#main{
    width: 100%;
    height: 100%;
    background-color: #212121;
}
#nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    text-transform: uppercase;
    padding: 0 20px;
}
#nav2{
    display: flex;
    align-items: center;
    gap:30px;
}
#nav h3{
    font-size: 27px;
    font-weight: 600;
}
#main h1{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 90px;
    width: 60%;
    margin-left: 20%;
    z-index: 9;
    position: relative;
}
#main h1:nth-child(2){
    margin-top: 200px;
}
#main h1:nth-child(3){
    text-align: center;
}
#main h1:nth-child(4){
    text-align: end;
}
img{
    height:400px;
    position: absolute;
    top: 13%;
    left: 45%;
}
#hc{
    position: absolute;
    top: 50%;
    height: 100px;
    left: 30%;
    display: flex;
    gap: 20px;
}
#i1{
    rotate:20deg;
}
#i2{
    rotate:10deg;
}
#footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    width:100%;
    padding: 0 20px;
    bottom: 0;
    position: fixed;
    margin-bottom: 10px;
}
@media (max-width:600px) {
    #main h1{
        font-size: 50px;
        line-height: 50px;
        width: 80%;
        margin-left: 10%;
    }
    img{
        height: 200px;
        top: 20%;
        left: 40%;
    }
    #nav h3{
        font-size: 10px;
    }
    #footer{
        padding: 0 10px;
    }
    #hc{
        top:48%;
        left: 15%;
    }
}