body {
    background-color: #747474;
     background-image: url("images/bg.png");
}

#linkListWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 100vw;
}


.linkImage {
    box-shadow: 0px 0px 0px #500000;
    transition: box-shadow 2s;
    border-radius: 50%;
    border: 10px black solid;
    max-width: 20vw;
    margin:3em;
    
}

a:hover .linkImage {
    box-shadow: 0px 0px 5em #ff0000;
    border-radius: 50%;
    border: 10px black solid;
}