html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* END OF CSS RESET */

html {
    /* To make use of full height of page*/
    margin: 0;
    background-image: linear-gradient(rgb(10, 0, 9), rgb(6, 0, 5), rgb(0, 0, 0));
    overflow: auto;
}

body {
    background-color: black;
    background-image: linear-gradient(rgb(0, 0, 0), rgb(6, 0, 5), rgb(10, 0, 9));
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#homebutton {
    font-family: 'Courier New', Courier, monospace;
    text-decoration: none;
    font-size: 1.2em;
    border: 1px solid;
    color: rgb(191, 140, 238);
    border-color: purple;
    padding: 1% 2%;
    margin-top: 1%;
    margin-left: 1%;
    position: absolute;
    top: 0.5%;
    left: 1%;
}

#homebutton:hover {
    background-color: rgba(128, 0, 128, 0.326);
}

form {
    font-size: 24px;
    padding: 10px 20px;
    color: white;
    border: 2px solid rgb(59, 0, 40);
    border-radius: 5px;
    animation: pulse 1s infinite;
    font-family: 'Courier New', Courier, monospace;
    margin-top: 23%; /* Add margin to move the form down from the top */
}

input {
	background-color: black;
	color: white;
	font-family: 'Courier New', Courier, monospace;
	border-radius: 5px;
	border-color: rgb(128, 0, 128, 0.326);
}

button {
	background-color: black;
	color: white;
	border-radius: 5px;
	border-color: rgb(128, 0, 128, 0.326);
	font-family: 'Courier New', Courier, monospace;
}
