/* Created By David Zhan and Michael Liu for the TitanHacks 2020 Hackathon */
html {
    height: 100%;
}
body {
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    background-color: #59c3b1; /* in case gradients not supported */
    background-image: linear-gradient(to top right, #59c3b1, #e7d093);
    background-attachment: fixed;
}

h1 {
    text-align: center;
}

div#credits {
    width: fit-content;
    border: 5px solid gold;
    margin: auto;
    margin-top: 60px;
}
div#credits h2 {
    text-align: center;
    font-size: 15px;
    padding: 10px 35px;
}

a {
    font-size: 17px;
    display: block;
    color: white;
    text-decoration: none;
    width: 415px;
    text-align: center;
    margin: auto;
    margin-top: 20px;
    background-color: gold;
    padding: 15px;
}
a:hover {
    background-color: rgb(255, 230, 85);
}