body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Arial', sans-serif;
  background-color: #36454F;  
  color: #e0e0e0;
  font-size: 18px;
}

body {
	overflow-x: hidden;
}

canvas#neuronCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
}

header, footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #00BFFF;
  color: #555;
}

header {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

footer {
	clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 10px;  
}

h1 {
  font-size: 2.5rem;
  color: #222;  
  letter-spacing: 0.1rem;
  span {
		display: block;		
		text-decoration: underline;
		text-decoration-color: #E30B5D;
		text-decoration-style: double;
		text-decoration-skip-ink: none;
		text-decoration-thickness: 5px;
		white-space: break-spaces;
	}
	span::after {
		content: "\00a0";
	}
	strong {
		color: #fff;
		font-weight: normal;
	}
}

h2 {
  color: #000;
  margin-top: 2rem;
  font-size: 1.6rem;
  span {
	  border-bottom: 5px solid #E30B5D;
	  line-height: 1rem;
      display: inline-block;
	  padding-right: 1rem;
  }
}

a {
	color: #E30B5D;
	text-decoration: none;
	font-weight: bold;
}

@media (max-width: 768px) {
	h2 {
		margin-top: 1rem;
	}
	header {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
	}
	footer {
		clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
	}	
}