:root {
  --font-color: white;
  --soft-font-color: #d0d0e0;
  --highlight-color: #3498db;
  --background-color-lighter: #34495e;
  --background-color: #2c3e50;

  --button-color: var(--highlight-color);
  --button-color-hover: var(--highlight-color);
}

@media(orientation:portrait) {
  :root {
    font-size: 3.2vw;
  }
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body {
  padding-left: 3vw;
  padding-right: 3vw;
  color: var(--font-color);
  background: var(--background-color);
  position: relative;
}

.view {
  margin-top: max(3vh, 15px);
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media(orientation:portrait) {
  .view {
    margin-top: 4vh;
  }
}


.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-one {
  flex: 1;
}

.justified-text {
  text-align: justify;
  text-justify: inter-word;
}



h1 {
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 5px;
  border-bottom: 0.55rem solid var(--background-color-lighter);
}


.vertically-centered {
  display: flex;
  width: 100%;
  justify-content: center;
}

.horizontally-centered {
  justify-content: center;
  align-items: center;
  flex: 1;
}




@media(orientation:portrait) {
  h1 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
}

.button,
.button-dark {
  padding: 0.625rem;
  border-radius: 0.45rem;
  text-decoration: none;
  border: transparent;
  min-width: 5rem;
  font-size: 1rem;
  box-shadow: 1px 2px 2.5px rgba(40, 40, 40, 0.1);
}

.button {
  background-color: var(--button-color);
  color: var(--font-color);
}

.button-dark {
  background-color: var(--background-color);
  color: var(--font-color);
}

a.button {
  text-decoration: none;
  text-align: center;
}

.button:hover,
.button-dark:hover {
  cursor: pointer;
  transform: scale(1.025);
  transition: all 0.25s ease;
}

.button:active,
.button-dark:active {
  transform: scale(1);
}

.button:hover {
  background-color: var(--button-color-hover);
}

.button-dark:hover {
  background-color: var(--background-color-lighter);
}