.button {
    background: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    color: white;
    border-style: solid;
    border-width: 2px;
    border-color: red;
    border-radius: 150px;
    padding: 1% 5%;
}
.button.selected {
    background: red;
}
.button.footer {
    border-color: white;
    white-space: nowrap;
    margin-left: 5%;
}
.button.footer.selected {
    background: white;
    color: black;
}
.button:hover {
    background: rgb(255, 0, 0);
}
.button.footer:hover {
    background: white;
    color: black;
}
.link {
    display: block;
    background-color: aqua;
    border-radius: 25%;
}
/*Small Desktop Version*/
@media screen and (max-width: 1150px) {
    .button.footer {
        margin: 0px;
        margin-bottom: 3%;
        padding: 1% 6%;
    }
}
/*mobile versrion*/
@media screen and (max-width: 700px) {
    .button.mobile {
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        height: 70px;
        width: 70px;
        padding: 0px;
        text-indent: -10000px;
    }
    .button.aboutme {
        background-image: url(../images/aboutmeimage.png);
    }
    .button.portfolio {
        background-image: url(../images/portfolioimage.png);
    }
    .button.contact {
        background-image: url(../images/contactimage.png);
    }
    .button.footer {
        margin-bottom: 5%;
        padding: 3% 10%;
    }
}