@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
body {
	background-color : #ffffff;
	font-family: 'Archivo Black', sans-serif;
}
h1 {
	background-color : #38bde6;
	margin : 10px;
	padding : 10px;
	font-size : 4em;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
h2 {
	background-color : #38bde6;
	margin : 10px;
	padding : 10px;
	font-size : 2em;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.logo {
	background-color : #ffffff;
	margin : 10px;
	padding : 10px;
	font-size : 2em;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.title {
	background-color : #ffffff;
}
.title h1{
	font-size : 3em;
}
.container {
	background-color : #ffffff;
	padding : 10px;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.article {
	background-color : #000000;
	margin : 1px;
	padding : 20px;
	font-size : 1em;
	display : flex;
	flex-direction : row;
	justify-content : right;
}
.container2 {
	background-color : #ffffff;
	padding : 10px;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.article2 {
	background-color : #000000;
	margin : 1px;
	padding : 20px;
	font-size : 1em;
	display : flex;
	flex-direction : row;
	justify-content : right;
}
h3 {
	background-color : #38bde6;
	margin : 10px;
	padding : 10px;
	font-size : 2em;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.container3 {
	background-color : #ffffff;
	padding : 10px;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.article3 {
	background-color : #000000;
	margin : 1px;
	padding : 20px;
	font-size : 1em;
	display : flex;
	flex-direction : row;
	justify-content : right;
}
h4 {
	background-color : #38bde6;
	margin : 10px;
	padding : 10px;
	font-size : 2em;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.container4 {
	background-color : #ffffff;
	padding : 10px;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.article4 {
	background-color : #000000;
	margin : 1px;
	padding : 20px;
	font-size : 1em;
	display : flex;
	flex-direction : row;
	justify-content : right;
}
h5 {
	background-color : #38bde6;
	margin : 10px;
	padding : 10px;
	font-size : 2em;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.container5 {
	background-color : #ffffff;
	padding : 10px;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.article5 {
	background-color : #000000;
	margin : 1px;
	padding : 20px;
	font-size : 1em;
	display : flex;
	flex-direction : row;
	justify-content : right;
}
h6 {
	background-color : #38bde6;
	margin : 10px;
	padding : 10px;
	font-size : 2em;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
.menu {
	display : flex;
	justify-content : center;
}
ul {
	display : flex;
	flex-direction : row;
}
li {
	background-color : #ffffff;
	list-style : none;
	width : 250px;
	transition : 0.5s;
	padding : 10px;
	display : flex;
	flex-direction : row;
	justify-content : center;
}
ul {
  position: relative;
}
ul li {
  list-style: none;
  text-align: center;
}
ul li a {
  color: #38bde6;
  text-decoration: none;
  font-size: 3em;
  padding: 5px 20px;
  display: inline-flex;
  font-weight: 700;
  transition: 0.75s;
}
ul:hover li a {
  color: #000;
}
ul li:hover a {
  color: #000;
  background: transparent;
}
ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5em;
  color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 500px;
  transition: letter-spacing 0.5s, left 0.5s;
}
ul li a:hover:before {
  content: attr(data-text);
  opacity: 3;
  left: 50%;
  letter-spacing: 10px;
  width: 18x;
  height: 18px;
  color: #38bde6;
}
ul li:nth-child(6n + 1) a:before {
  background: #ffffff;
}
ul li:nth-child(6n + 2) a:before {
  background: #ffffff;
}
ul li:nth-child(6n + 3) a:before {
  background: #ffffff;
}
ul li:nth-child(6n + 4) a:before {
  background: #ffffff;
}
li:hover{
	background-color : #38bde6;
}