Skip to content
style.css 940 B
Newer Older
f0x's avatar
f0x committed
html {
  background: #1c1c1c;
}

html, body {
  margin: 0;
  padding: 0;
}

#triangles, #triangles canvas {
  z-index: -1;
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
}

.header {
  padding: 0 1rem;
  text-align: center;
  color: white;
  min-height: 5rem;
  line-height: 5rem;
f0x's avatar
f0x committed
  background: hsla(208, 56%, 46%, 1);
f0x's avatar
f0x committed
}

a {
f0x's avatar
f0x committed
  color: hsla(208, 61%, 53%, 1);
f0x's avatar
f0x committed
}

h1 {
  margin: 0;
}

.ideals {
  color: white;
  height: 50vh;
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: row-reverse;
}

.block {
  margin-right: 10vw;
  display: inline-block;
  background: hsla(0, 0%, 0%, 0.5);
  max-width: 30%;
  padding: 2rem;
  border-radius: 0.2rem;
  font-size: 1.6rem;
}

.block a {
  text-decoration: none;
}

.content {
  background-color: #1f1f1f;
  color: white;
  min-height: 80vh;

  padding: 5vh 15vw;
  font-size: 120%;
}

.content h1 {
  text-align: center;
  padding: 1rem;
}