@import 'bootstrap.min.css';

html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: 0 1rem 1rem 1rem;

	&>header {
		background-color: white;
		padding-top: 1rem;
		text-align: center;
		width: 100%;

		position: sticky;
		top: 0;
		z-index: 1;

		&>h1 {
			font-size: 2.3rem;

			&>a {
				color: black;
				text-decoration: none;

				&:hover {
					text-decoration: underline;
				}
			}
		}
	}

	&>main {
		display: flex;
		align-items: center;
		gap: 3.2rem;
		margin: 2.3rem;

		@media (height > 568px) {
			margin: 3.2rem;
		}

		@media (max-width: 320px) {
			gap: 1rem;
		}
	}

	&>footer {
		text-align: center;
		color: #666;
		justify-content: center;
	}
}

dl {
	&>dt {
		margin: 1.23rem 0 0.42rem 0;

		&:first-of-type {
			margin-top: 0;
		}
	}

	&>dd {
		margin-left: 1.69rem;
		margin-bottom: 0.42rem;
	}
}
