footer{
    /* background-color: red; */
    width: 100%;
    min-height: 10vh;
    height: auto;
    overflow: none;
    position: relative;
}

footer .dotportion{
    display: flex;
    width: 100%;
    min-height:40vh;
    height: auto;
    overflow-y: none;
    overflow-x: none;
    /* background-color: thistle; */
    position: relative;
}
footer .dotportion .dot{
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gold;
    box-shadow: 2px 1px 6px 6px  gold;
    margin: 10px;
    animation-name: visiblityAnime;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}
@keyframes visiblityAnime {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}


.social{
    background-color: rgba(255, 0, 0, 0);
    width: 100%;
    min-height: 35vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    position: absolute;
    z-index: 1;
}
.social ul{

    background-color: rgba(216, 191, 216, 0);
    width: 70%;
    min-height: 10vh;
    height: auto;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.social ul li{
    position: relative;
    list-style: none;
    /* background-color: yellow; */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.5s;
}
.social ul li.github{
    background-color: rgba(255, 217, 0, 0.637);
}
.social ul li:hover{
    box-shadow: 2px 1px 6px 6px  gold;
}
.social ul li a{
    position: absolute;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    /* color: black; */
}
.social ul li img{
    position: absolute;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    /* color: black; */
}
footer .copy{
    background-color: yellow;
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}