/*

Description: Small Project to keep track of the Tasks and Aspirations me and my girlfriend want to do in 2024
Author: Pelle
Author URI: https://drs-community.de/
Version: 1.0
Tags:

License: DRS Private License
License URI: https://drs-community.de

█████▄  ██████▄ ▄█████
██  ▀██ ██▄▄▄██	██▄▄▄
██  ▄██ ██▀▀██▄  ▀▀▀██
█████▀  ██   ██ █████▀

*/

/* === START of FONTS === */
	/* Saira */
		@font-face {
			font-family: Saira;
			src: url(assets/fonts/Saira/Saira-Regular.ttf) format('truetype');
			font-weight: 400;
			font-style: normal;
		}
		@font-face {
			font-family: Saira;
			src: url(assets/fonts/Saira/Saira-Bold.ttf) format('truetype');
			font-weight: 700;
			font-style: normal;
		}
/* === END of FONTS === */

/* === START of MAIN === */
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}
	body {
		background: #111;
	}
	form {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		max-width: 100%;
		padding: 20px;
	}
	input, button {
		font-family: Saira, sans-serif;
		color: #aaa;
		display: block;
		text-align: center;
		background: transparent;
		border: 1px solid #555;
		max-width: 100%;
	}
	input { font-size: 3vh; }
	button {
		background: #555;
		color: #111;
		margin: 1vh auto 0;
		font-size: 2vh;
		padding: 0 2vh;
		font-weight: 700;
		text-transform: uppercase;
		cursor: pointer;
	}
	button:hover {
		background: #111;
		color: #555;
	}
/* === END of MAIN === */