body,html{
	margin: 0px;
	padding: 0px;
	background: #030303;
	background: linear-gradient(172deg, hsla(212, 47%, 12%, 1) 0%, hsla(0, 0%, 1%, 1) 100%);
	background-attachment: fixed;
	background-repeat: no-repeat;
	height: 100%;
	color: white;
}

*{
	box-sizing: border-box;
	font-family: "IBM Plex Mono", monospace;
}

/* Base link style */
a {
	text-decoration: none;
	color: black;
}

/* Hover state */
a:hover {
	color: #007bff;
	text-decoration: underline;
}



#page{
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;	
}


.button{
	min-width: 30px;
	min-height: 30px;
	
	color: white;
	
	border: 1px solid #7c7c7c;
	border-radius: 4px;
	text-align: center;
	font-size: 18px;
	
	text-decoration: unset;
	cursor: pointer; 
}

.button.big{
	font-size: 22px;
	font-weight: bold;
	padding: 10px;
	margin-top: 10px;
	max-width: 300px;
	width: 100%;
}

.button.green{
	background: rgb(56, 193, 141);
}
.button.white{
	background: rgb(249 249 249);
	color: black;
}

.button {
	transition: all 0.2s ease;
	box-shadow: 0px 2px 0px 0px rgb(175 175 162);
}


.button:hover {
	box-shadow: 0px 2px 0px 0px green;
}
.button.animate:hover {
	border: 1px solid green;
	box-shadow: 0px 2px 0px 0px green;
}

.button.animate:active {
	transform: translateY(2px);
	box-shadow: 0px 0px 0px 0px green;
}



