linkbutton {
    display: flex;
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    width: 75px;
    height: 75px;
    background-color: rgba(255, 255, 255, .05);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    font-size: 1.8rem;
    transition: .3s all ease-in-out;
    cursor: pointer;
}
linkbutton:hover {
    background-color: rgba(255, 255, 255, .25);
    scale: 1.07;
}
linkbutton:active {
    scale: 1;
}

links {
    color: rgba(255, 255, 255, .4);
    position: absolute;
    bottom: 7rem;
    right: 2.9rem;
    display: grid;
    row-gap: .5rem;
}
links div {
    display: flex;
    position: relative;
    left: 7rem;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, .05);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    font-size: 1.5rem;
    transition: .3s all ease-in-out;
    cursor: pointer;
}
links div:hover {
    background-color: rgba(255, 255, 255, .25);
    scale: 1.07;
}
links div:active {
    scale: 1;
}