@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', sans-serif;
}

body{
    margin: 40px;
}

.logo img{
    width: 170px;
}

.logo{
    display: inline;
}

.icons{
    display: inline;
    position: absolute;
    right: 40px;
    font-size: 25px;
}

.icons i, .icons i:visited{
    margin-right: 5px;
    color: #7D17BA;
}
.icons i:hover{
    color: #4c69fb;
}

.gif img{
    width: 600px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.text{
    text-align: center;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: auto;
}
.text h2{
    color: #7D17BA;
    font-size: 36px;
    font-weight: 100;
}
.text h6{
    color: #BCBCBC;
    font-size: 20px;
    font-weight: 100;
    margin-bottom: 8px;
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .logo img{
        width: 130px;
    }
    
    .icons{
        font-size: 23px;
    }
    
    .gif img{
        width: 500px;
    }
    .text h2{
        font-size: 30px;
    }

    .text h6{
        font-size: 19px;
    }
}

@media (min-width: 340px) and (max-width: 768px) {
    .logo img{
        width: 170px;
        margin-top: 30px;
    }
    
    .logo{
        display: block;
        text-align: center;
    }
    
    .icons{
        display: block;
        position: absolute;
        text-align: center;
        right: 0;
        left: 0;
        bottom: 40px;
        font-size: 30px;
    }
    
    
    .gif img{
        width: 400px;
    }
    
    .text{
        bottom: 100px;
    }
    .text h2{
        font-size: 30px;
    }
    .text h6{
        font-size: 18px;
    }
}