/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
background-color: #000;
	font-family: consolas, monospace;
	background-image: url(https://i.imgur.com/bVHeDuH.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
background-size: cover;
}

.paddington {
padding: 30px;
}


a {
text-decoration: none;
color: inherit;
}


.box-title {
margin: 0px 0px 10px;
padding: 5px 10px 8px;
font-size: 150%;
color: #000;
background-color: #f2992e;
	font-family: "Silkscreen", consolas, monospace;
}


.gateway-box {
max-width: 500px;
margin: 80px auto;
border: #fff 2px solid;
background-color: #000;
text-align: center;
padding: 25px;
box-shadow:  #fff 5px 5px 0px;
}


.gatebuttons {
display: flex;
text-align: center;
flex-direction: row;
justify-content: center;
gap: 30px;
margin: 0px auto 20px;
}


.gen-button {
	text-align: center;
	max-width: 100%;
	padding: 10px;
	border-radius: 0px;
	font-family: consolas, monospace;
	border: solid #fff 2px;
	background-color: #000;
	color: #fff;
	font-size: 100%;
	cursor: pointer;
}


.gen-button:hover {
	border-radius: 0px;
	border: solid #f2992e 2px;
	background-color: #fff;
	color: #000;
	font-weight: bold;
transition: .5s;
box-shadow: #f2992e 4px 4px 0px;
}

