@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-image: url(https://cdn.discordapp.com/attachments/941769043889766431/955109655967838260/giphy.gif); */
}

body {
    background-image: url(https://cdn.discordapp.com/attachments/941769043889766431/955127787256184932/giphy.gif);
}

.hero {
    font-family: 'Poppins', sans-serif;
}

nav {
    width: 84%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logomain {
    border-radius: 20%;
    height: 250px;
    width: 250px;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.logo {
    width: 150px;
    cursor: pointer;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    text-decoration: none;
    color: #606163;
}

nav ul li a:hover {
    color: #ff0000;
}

.btn {
    background: #ff0000;
    border-radius: 5px;
    padding: 10px 18px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.btn:hover {
    background: transparent;
    color: #ff0000;
    border: 1px solid #ff0000;
}

.info {
    text-align: center;
    margin-top: 80px;
}

.info h1 {
    font-size: 40px;
    color: #c9c9c9;
}

.info h1 span {
    color: #ff0000;
}

.info p {
    color: #c9c9c9;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.img-box {
    width: 45%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 100px;
}

.img-box img {
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s;
}

.img-box:hover .back-img {
    bottom: 40px;
}

.img-box:hover .man-img {
    left: 54%;
}

.social {
    text-align: center;
    margin-top: 263px;
}

.social a {
    font-size: 28px;
    color: #c9c9c9;
    margin-right: 20px;
    transition: all 0.5s;
}

.social a:hover {
    color: #610e0e;
}