#wrapper{
    display: flex;
    justify-content: center;
    
}

.content{
    margin: 10% 0 ;
    display: flex;
    flex-direction: column;
}

body{
    overflow: hidden;
}

a{
    color: var(--MTextColour);
    padding: 1em;
    margin: 1rem;
    align-self: center;

    border-radius: 205px;
    font-size: 3rem;
    text-decoration: none;
    background-color: rgb(130, 53, 194);
    box-shadow: inset 0px 0px 5px rgb(211, 157, 236),inset 0px 0px 25px rgb(161, 36, 219);

}

a:visited{
    background-color: rgb(130, 53, 194);
    color: var(--MTextColour);

}

a:hover{
    color: rgb(9, 255, 120);
    background-color: rgb(129, 73, 219);
    box-shadow: inset 0px 0px 5px rgb(236, 225, 248),inset 0px 0px 25px rgb(234, 117, 245);

}

