* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html {
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
}

body {
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    padding-top: 20vh;
    height: 100vh;
}

h1 {
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: oblique;
    font-weight: 900;
    letter-spacing: 20px;
    width: 100%;
    text-align: center;
    font-size: 82px;
    margin-bottom: 200px;
}

div.buttons {
    width: 700px;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

a {
    text-decoration: none;
    color: black;
    background: white;
    background-size: 200%;
    background-position: 0 0;
    padding: 15px 30px;
    font-family: 'Courier New', Courier, monospace;
    font-size: xxx-large;
    border-radius: 5px;
}

a:hover {
    background: rgb(205, 205, 205);
}