@font-face {
  font-family: 'MyFont';
  src: url('fonts/royalacid.ttf') format('royalacid1'),
       url('fonts/royalacid.ttf') format('royalacid1');
  font-weight: normal;
  font-style: normal;
}

html{
	background-image: url("images/clouds.jpeg");
	font-family: 'royalacid', sans-serif;
}

h1{
	text-align: center;
	color: white;
	font-size: 3rem;
}

h2{
	text-align: center;
}

aside{
	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
  	height: 100vh;
  	margin: 0;
  	padding: 150px;
}

figure{
		display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
  	height: 50vh;
  	margin: 0;
}
.grid-container {
  display: grid;
  color: white;
  place-items: center;
  height: 65vh;
  padding: 70px;
  margin: 50px;
  font-size: 2.5rem;
}

.circle-paragraph {
  background-color: palevioletred;
  color: white;
  border-radius: 50%;
  width: 350px;
  height: 350px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .75rem;
  line-height: 1.5;
  box-shadow: 0 0 0 3px white, 0 0 0 8px lightpink;
  padding: 20px;
}

.pic{
	border-radius: 50%;
  	width: 300px;
  	height: 300px;
 	border: 2px solid #000;

}



