* {
	box-sizing: border-box;
}

.header {
  display: flex;
  flex-direction: column;
  padding: 20px 90px;
  background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
  border-bottom: 6px solid rgba(0, 0, 0, 0.0);
  width: 100%;
}

.header .title {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
  color: #fff;
  font-size: 20px;
}

.header nav{
	display: flex;
	justify-content: center;
}

.header nav li{
	display: inline;
	padding: 5px 10px;
	color: white;
	border: 2px solid white;
	border-radius: 10px;
}

a:link {
  text-decoration: none;
  color: white;
}

a:visited {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: none;
  color: white;
}

a:active {
  text-decoration: none;
  color: white;
}

.header nav li:hover {
	background-color: black;
	border: 2px solid black;
	color: white;
}

body {
	background-color: #F0F8FF;
	font-family: seravek;
	margin: 0;
}

p {
	font-size: 20px;
}

.explain {
	margin-left: 10px;
	margin-right: 10px;
}

.explain h1, h2 {
	text-align: center;
}

h2 {
	font-size: 30px;
}

.explain img {
	border-radius: 20px;
}

.container1 {
	display:flex;
	justify-content: center;
}

.container2 {
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	/*left: 100px;*/
}

.image img {
	padding-top: none;
	height: 250px;
	width: 250px;
	object-fit: contain;
}

.footer {
    background-color: rgba(0, 0, 0, 0.7);
	padding: 5px 0;
}

footer {
  display: inline;
  vertical-align: middle;
  bottom: 0;
  font-size: 13px;
  color: white;
}

footer img {
	width: 11px;
	height: 11px;
}

 @media screen and (max-width: 600px) {
	.container1 {
	display: block;
	align-items: center;
	margin-left: 1px;
	margin-right: 1px;
    }
    
	.header {
		display: flex;
		flex-direction: column;
		font-size: 10px;
	}
	

    .header nav li{
		display: flex;
		font-size: 20px;
		padding-top: 5px;
		padding-bottom: 5px;
		width: 150px;
		gap: 5px;
}

    .explain img {
		width: 95vw;
	}

 }