@media (min-width: 800px) {
    /* Styling icons */
    .icon-list {
        position: fixed;
        top: 75%;
        left:5%;
        transform: translateY(-50%);
        
    }
    
    .icon-list a {
        display: block;
        text-align: center;
        padding: 8px;
        transition: all 0.5s ease;
        color: white;
        font-size: 40px;
        float:right;
        text-decoration: none;
    }
}
 /* HOver affect on icons */
.icon-list a:hover {
    color: #000;
    width:50px;
}

@media (max-width: 799px) {
    /* Styling icons */
    .icon-list {
        position:relative;
        text-align: center;
        margin:auto;
        
        
    }
    
    .icon-list a {
        text-align: center;
        padding: 8px;
        transition: all 0.5s ease;
        color: white;
        font-size: 25px;
        text-decoration: none;
    }
}
 /* HOver affect on icons */
.icon-list a:hover {
    color: #000;
    width:50px;
}

/* Designing each icons */
.instagram {
    background: #3f729b;
    color: white;
}
 
.tumblr {
    background: #3b5998;
    color: white;
}
 
.twitter {
    background: #00acee;
    color: white;
}
