body{
    animation: transition 1s;
}

@keyframes transition {
    from{
        opacity: 0;
        transform: translateY(-50px);
    }
    to{
        opacity: 1;
        transform: rotate(0);
    }
}

#my-img{
    height: 100vh;
    width: auto;
    position: absolute;
    margin: auto;
    right: 0;
}

#side{
    position: absolute;
    background: #141E55;
    height: 100vh;
    width: 50vw;
    color: white;
    font-family: Segoe UI;
}
#article{
    margin: 100px;
}


#footer{
    position: absolute;
    background: #000000;
    height: 5vh;
    width: 100%;
    margin: auto;
    bottom: 0;
    color: #5A6776;
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
#footer>p{
    top: 0;
    bottom: 0;
}
#icons {
    width: 200px;
    height: 25px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-left: 10px;
    background: rgba(0, 0, 0, 0);

}

#icons > a:hover {
    cursor: pointer;
    box-shadow: 1px 1px 10px 2px #43778b;
    background-size: contain;
}

#icons > a {
    width: 25px;
    background-size: cover;
}

#icons > a:nth-child(1) {
    background-image: url("../image/icon/github.png");
}

#icons > a:nth-child(2) {
    background-image: url("../image/icon/linkedin.png");
}

#icons > a:nth-child(3) {
    background-image: url("../image/icon/facebook.png");
}

#icons > a:nth-child(4) {
    background-image: url("../image/icon/whatsapp.png");
}

/*-------------------Responsive------------------*/
@media all and (max-width: 1440px) {

}

@media all and (min-width: 768px) and (max-width: 1366px) {
    #my-img{
        height: auto;
        width: 100vw;
    }
    #side{
        position: absolute;
        top: 300px;
        height: 40vh;
        width: 100vw;
    }
    #article{
        margin: 20px;
    }
    #footer{
        height: 15vh;
        flex-direction: column-reverse;
        bottom: 0;
    }
}

@media all and (min-width: 425px) and (max-width: 768px) {
    #my-img{
        height: auto;
        width: 100vw;
    }
    #side{
        position: absolute;
        top: 250px;
        height: 50vh;
        width: 100vw;
    }
    #article{
        margin: 20px;
    }
    #footer{
        height: 15vh;
        flex-direction: column-reverse;
        bottom: 0;
    }
}

@media all and (min-width: 375px) and (max-width: 425px) {
    #my-img{
        height: auto;
        width: 100vw;
    }
    #side{
        position: absolute;
        top: 155px;
        height: 65vh;
        width: 100vw;
    }
    #article{
        margin: 20px;
    }
    #footer{
        height: 15vh;
        flex-direction: column-reverse;
        bottom: 0;
    }
}

@media all and (min-width: 320px) and (max-width: 375px) {
    #my-img{
        height: auto;
        width: 100vw;
    }
    #side{
        position: absolute;
        top: 145px;
        height: 65vh;
        width: 100vw;
    }
    #article{
        margin: 20px;
    }
    #footer{
        height: 15vh;
        flex-direction: column-reverse;
        bottom: 0;
    }
}
@media all and (max-width: 320px) {
    #my-img{
        height: auto;
        width: 100vw;
    }
    #side{
        position: absolute;
        top: 135px;
        height: 65vh;
        width: 100vw;
    }
    #article{
        margin: 20px;
    }
    #footer{
        height: 15vh;
        flex-direction: column-reverse;
       bottom: 0;
    }
}