* {
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(to bottom right, #0077c2, #00bfff);
  color: white;
  margin: 0;
  padding: 0;
  font-size: 18px;
}

header {
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: "Schoolbell", sans-serif;
  font-size: 22px;
}

header.fullpage {
  height: 100vh;
}

section {
  width: 700px;
  margin: 0 auto 48px auto;
  padding: 24px;
  background-color: #2ee6f72c;
  border-radius: 3px;
  box-shadow: 7px 7px 0px 0px #0000003a;
}

h3 {
  color:#002758;
}

.logo {
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.baseline {
  opacity: 0.7;
  font-size: 28px;
  color: white;
  pointer-events: none;
  user-select: none;
}

nav {
  margin-top: 32px;
}

nav a {
  margin: 8px;
}

a {
  display: inline-block;
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.capsule {
  position: relative;
  left: 0px;
  top: 0px;
  border-radius: 3px;
  box-shadow: 7px 7px 0px 0px #0000003a;
  transition: all 0.1s;
}

.capsule:hover {
  left: 2px;
  top: 2px;
  box-shadow: 5px 5px 0px 0px #0000003a;
}

.capsule:active {
  left: 4px;
  top: 4px;
  box-shadow: 3px 3px 0px 0px #0000003a;
}

.links {
  margin-top: 64px;
}

.links * {
  margin: 0 8px 0 8px;
}

@media only screen and (max-width: 600px) {
  /*header {
    height: auto;
    padding: 20px;
  }*/
}