* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;

  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
  	background-color: #000000;
}
.index h1 {
  	text-align: center;
  	color: #ffffff;
  	padding: 0px 0 0px 0;
	font-weight: bold;
}
.index form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 0px;
}
.index form input[type="submit"] {
  	width: 150px;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #ff0000;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
    border-width: 0px; 
    border-top-left-radius:5px; 
    border-top-right-radius:5px; 
    border-bottom-left-radius:5px; 
    border-bottom-right-radius:5px;
}
.index form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}