:root{
    --myBlack: #000000;
    --Grey: #232323;
    --HighLight: #454545;
    --PHGold: #ffae34;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 5vw;
    color: var(--PHGold);
}
body{
    background-color: black;
    min-width: 300px;
}
a{
    animation: OnLeave 1s forwards;
    padding: 10px;
    background-color: var(--myBlack);
    margin: 7px;
    text-decoration:none;
    color:var(--PHGold);
    border: 4px solid var(--PHGold);
    color: cyan;
    border-radius: 20px;
}
a:hover{
    animation: OnHover 1s forwards;
    display: block;
}
.GoToButtonHolder{
    display: grid;
    justify-content: center;
}
h1{
    text-align: center;
    
    font-size: 50px;
    margin: 20px;
}
@media only screen and (min-width: 900px){
*{
    font-size: larger;
}
}