  
*
{
	margin: 10px;
	padding: 10px;
	box-sizing: border-box;
	font-family: serif;
	font-size: 110%;
}
body
{ 

	display: flex;
	min-height: 100vh;
	position: relative;
	width: 100%;
	height: 100%;
	background: url(05.jpg);
	background-size: cover;
	background-attachment: fixed;
}


section
{
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.container
{
	height: 100%;
	position: relative;
	width: 60%;
	max-width: 1500px;
	margin: 20px;
	padding: 20px;
	box-shadow: 0 3px 4px rgba(0,0,0,1);
	background-color: white;
	border-radius: 10px;
	text-align: center;
}
.form-group
{
	width: 100%;
	padding: 10px;
}
.form-group-2
{
	width: 100%;
	padding: 10px;
}

.form-group input,
.form-group textarea{
	width: 50%;
	border: 2px solid grey;
	border-radius: 10px;
	
}
.form-group textarea{
	width: 100%;
}
.form-group select{
	width: 8%;
	border: 2px solid grey;
	border-radius: 10px;
	
}
.form-group-2 select{
	width: 15%;
	border: 2px solid grey;
	border-radius: 10px;
	
}
.message{
	background-color: black;
	
}
textarea
{
	resize: vertical;	
}

button{
	width: 50%;
	border: none;
	outline: none;
	padding: 20px;
	border-radius: 80px;
	color: white;
	text-align: center;
	cursor: pointer;
	margin-top: 10px;
	transition: .3s ease background-color;
	background-color: DarkSlateGray;
}
button:hover
{
	background-color: white;
	color: black;
		border: 2px solid grey;
}
.topic
{
	font-size: 300%;
}
.topic-2{
	font-size: 200%;
}
#status{
	width: 90%;
	max-width: 500px;
	text-align: center;
	padding: 10px;
	margin: 0 auto;
	border-radius: 8px;	
}
#status.success{
	background-color: lightgreen;
	animation: status 4s ease forwards;
}
#status.error{
	background-color: red;
	color: white;
	animation: status 4s ease forwards;
}
@keyframes status{
		0%{
		opacity: 1;
		pointer-events: all;
	}
		90%{
		opacity: 1;
		pointer-events: all;
	}
		100%{
		opacity: 0;
		pointer-events: none;
	}
}


.menu
{
	position: absolute;
	width: 200px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu li
{
	position: absolute;
	left: 0;
	list-style: none;
	transform-origin: 100px;
	transition: 1s;
	transition-delay: calc(0.1s * var(--i));
	transform: rotate(0deg) translate(80px);
}

.menu.active li
{
	transform: rotate(calc(360deg / 8 * var(--i)));	
}
.menu li a
{
	display: flex;
	justify-content: center;
	align-items: center;
	background: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transform: rotate(calc(360deg / -8 * var(--i)));		
	box-shadow: 0 3px 4px rgba(0,0,0,1);
	color: #111;
	transition: 1s;
}
.menu li a:hover
{
	color: gold;
	background: black;
}
.toggle
{
	position: absolute;
	width: 60px;
	height: 60px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 3px 4px rgba(0,0,0,1);
	font-size: 2em;
	transition: transform 2s;
}
.menu.active .toggle
{
	transform: rotate(315deg);
	
}
