@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
* {
  font-family: 'Russo One', sans-serif;
}











html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #000000;
	color: #ff6600;
}
a {
	text-decoration : underline;
	color : #ff6600;
}
a:link {
	text-decoration : underline;
	color : #ff6600;
}
a:visited {
	text-decoration : underline;
	color : #ff6600;
}
a:hover {
	text-decoration : none;
	color : #ffffff;
}












input[type=text], input[type=email], select, textarea {
    width: 90%;
    padding: 2px 2px;
    margin: 2px 0 10px 0;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 3px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 50%;
    background-color: #be66c1;
    color: #000;
    font-weight:bold;
    font-size: 18px;
    padding: 14px 20px;
    margin: 8px 0;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #943f97;
}

textarea {
    width: 90%;
    height: 150px;
}



