@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Ubuntu&display=swap');

body {
    background-color: #161121;
    color: white;
    font-family: 'Ubuntu', sans-serif;
    text-shadow: 0px 0px 5px white;
}

a {
    color: RoyalBlue;
    text-shadow: 0px 0px 4px rgb(0, 42, 167);
    transition: 0.3s ease 0s;
}

a:hover {
    color: white;
    text-shadow: 0px 0px 5px white;
}

.button {
    margin-top: 2%;
    margin-left: 2%;
    width: 10rem;
    height: 3rem;
    font-family: 'Lobster', cursive;
    font-size: 20px;
    color: white;
    text-shadow: 0px 0px 3px white;
    border: none;
    background: black;
    box-shadow: 0px 0px 12px 2px black;
    border-radius: 30px;
    transition: 1s ease 0s;
    cursor: pointer;
}

.button:hover {
    text-shadow: 0px 0px 3px black;
    background: white;
    box-shadow: 0px 0px 12px 2px white;
    color: black;
    width: 14rem;
    letter-spacing: 4px;
}