/** Universal rules. */
* {
  margin: 0;
  padding: 0;
}

/** text */
p, b, a, h1, h2, h3, h4, h5, blockquote, li {
  font-family: Times New Roman, sans-serif;
  color: white;
}

h4 {
  padding: 10px 10px 0; 
}

p {
  padding: 0 10px 10px;
}

.title {
  color: black;
  font-size: 5rem;
  text-shadow: 0.3vmin 0.3vmin #f2f2f2, -0.15vmin -0.15vmin #F88FB0;
}

.small {
  font-size: 8px;
}

/** General body space. */
body {
  background-color: black;
  overflow-x: hidden;
}

/** Container contains all boxes. */
.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

.content { padding: 50px 0; }

.box {
  margin: 10px;
  display: grid;
  justify-content: center;
  align-content: center;
  text-align: center;
  justify-items: center;
}

.box-text {
  margin: 10px;
  max-width: 600px;
}

/** Non-selectable content. */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
      -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

/** Regular link jump to main. */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000000;
  color: white;
  padding: 8px;
  z-index: 100;
}

/** Focused link jump to main. */
.skip-link:focus {
  top: 0;
}
