html{
    height: 100%;
}

body{
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: serif;
    background-color: black;
}

div{
    background-color: white;
    padding: 10px;
    border: 20px groove #e6b422;
}

a{
    color: black;
    font-size: 70px;
    text-decoration: none;
}

a:hover{
    color: #e6b422;
    filter: drop-shadow(0 0 4px #e6b422);
}