.translate-webpage {
    position: absolute;
    display: flex;
    font-size: 1rem;
    right: 7px;
    top: 7px;
    padding: 0.5rem 0.5rem;
    border-radius: 7px;
    box-shadow: 0px 0px 7px grey;
    background-color: white;
    justify-content: flex-end;
    background-image: url(/imgs/united-states.png);
    background-size: 50%;
    background-position: top;
    background-repeat: no-repeat;
}

.link {
    cursor: pointer;
    font-weight: bold;
    text-decoration-line: none;
    text-shadow: 0px 0px 7px rgb(255, 70, 70);
}

@media screen and (max-width: 600px) {
    .translate-webpage {
         align-items: center;
        margin: 0.25rem auto;
        width: 100px;
        position:static;
        justify-content: center;
    }
}