* {
    -webkit-tap-highlight-color: transparent;
}

body {
    text-align: center;
    background-color: rgb(59, 59, 59);
    color: rgb(255, 255, 255);
    font-family:'Trebuchet MS', Arial, sans-serif;
}

.profile_top .profile_picture {
    width: 150px;
    margin-top: 15px;
}

button > img,
button > span {
  vertical-align: middle;
}

.button {
    background-color: rgb(34, 34, 34);
    border: none;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 20px;
    text-align: center;
    margin: 10px 2px;
    cursor: pointer;
    width: 50%;
    padding: 10px; 
    border-radius: 15px;
}

.links .button img {
    max-width: 15%;
    padding-right: 5px;
}

@media (min-width: 600px) {
    .button {
     width: 40%;
    }
}

@media (min-width: 800px) {
    .button {
     width: 35%;
    }
}

@media (min-width: 1000px) {
    .button {
     width: 20%;
    }
}

@media (min-width: 1300px) {
    .button {
     width: 15%;
    }
}

.button:hover{
    background-color: rgb(126, 183, 226);
    color: rgb(0, 0, 0);
    border-color: gold;   
}