body {
    background-color: black;
}

h2, .welcome-button,
a:link, a:active,
a:visited {
    color: white;    
}

h2, .welcome-button {
    font-family: avenir-light;
    text-align: center;    
}

h2 {
    text-shadow: 0px 2px 5px red;
    margin: 0 auto;
    /*margin-top: 300px;*/
    margin-top: 200px; 
    font-size: 30pt;
}

h2.note {
    margin-top: 50px;
    font-size: 20pt;
}

.welcome-button {
    height: 50px;
    width: 200px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    margin-top: 50px;
    background-color: red;
    box-shadow: 0 5px 10px red;
    padding: 10px;
    font-size: 24px;
    border-radius: 8px;
    border: none;
}

.welcome-button,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}