#icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

#icon-link-button {
    margin: 12px 2px 2px 2px;
    display: block;
    color: var(--text_color, white);
    background-color: var(--button_color, black);
    height: 37px;
    border-radius: 18.5px !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

#icon-link-button:hover {
    color: var(--text_hover_color, white);
    background-color: var(--button_hover_color, black);
}

#icon-link-button:focus {
    outline: none;
}

#icon-container {
    width: 128px;
    height: 128px;
}

#icon-container svg {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    #icon-link-button {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 600px) {
    #icon-link-button {
        font-size: 0.8em;
        width: 120px;
    }
    #icon-container {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 500px) {
    #icon-container {
        width: 25vw;
        height: 25vw;
    }
}

@media screen and (max-width: 400px) {
    #icon-link-button {
        width: 100px;
        height: 50px;
    }
}