* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background-color: rgba(243,243,243,1);
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 2cm;
}

input[type="checkbox"] {
	display: none;
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: white;
}

nav {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	height: 70px;
	background-color: rgba(199,83,102,1);
	border: 3px solid rgba(130,42,57,1);
	z-index: 99;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
	white-space: nowrap;
}

li ul {
	display: none;
	position: absolute;
	background-color: rgba(199,83,102,1);
}

nav ul li {
    flex: 0 0 18rem;
	padding-top: 8px;
    text-align: center;
    display: block;
	font-size: 20px;
	white-space: nowrap;
	z-index: 100%;
}

nav ul li a {
	font-size: 20px;
    text-decoration: none;
    padding: 0.8rem 1rem;
    display: block;
    color: white;
	z-index: 100%;
}

nav ul li a:hover {
    color: rgb(255, 183, 196);
    font-style: italic;
	z-index: 100%;
}

nav ul li:hover ul {
	display: flex;
	flex-direction: column;
}

nav ul li ul li {
	flex: 0 1 auto;
	width: 8rem;
}

@media screen and (max-width: 1000px) {
    nav ul {
        display: none;
        flex-direction: column;
		background-color: rgba(199,83,102,1);
		border: 3px solid rgba(130,42,57,1);
    }

	.hamburger {
		display: block;
		float: right;
		cursor: pointer;
	}

	input[type="checkbox"]:checked ~ ul {
	display: block;
	}

	li ul {
	position: static;
	}

	nav ul li {
	flex: 0 0 auto;
	width: 100%;
	}
}

h3 {
	margin-top: 5px;
	text-align: center;
	font-size: 22px;
	color: grey;
	font-weight: normal;
}

h1 {
	margin-top: 1cm;
	padding-top: 10px;
	text-align: center;
	font-size: 30px;
	color: rgb(78, 77, 77);
}

h2 {
	color: rgb(78, 77, 77);
}

main {
	display: flex;
	left: 80%;
    flex-direction:column;
    justify-content: left;
    flex-wrap: wrap;
    width: 70%;
	margin: auto;
}

.info {
    color: black;
    padding: 1cm;
    flex-grow: 1;
    font-size: 17px;
	justify-content: center;
}

p {
    margin-top: 1em;
	font-size: 19px;
	text-align: left;
}

.Warnings {
	margin-top: 0cm;
	margin-left: 3cm;
}

.contact {
	text-decoration: underline;
	color: rgba(130,42,57,1);
}

.contact:hover {
	font-weight: bold;
	font-size: 20px;
}

.category {
	font-size: 22px;
	text-decoration: underline;
	color: black;
}

.category1 {
	margin-top: 1cm;
}

.category:hover {
	font-weight: bold;
	text-decoration: none;
	font-size: 19px;
}

.first {
	padding-top: 1cm;
}

@media screen and (max-width:600px) {
	h1 {
		font-size: 23px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 20px;
	}

	p {
		font-size: 13px;
	}

	main {
		flex-wrap: wrap;
		width: 100%;
		margin: auto;
	}

	.Warnings {
		margin-top: 0cm;
		margin-left: 20px;
		font-size: 18px;
		}
	}