* {
  box-sizing: border-box;
}

:root {	
  --telarus-primary: rgb(62, 130, 193); 
  --telarus-secondary: rgb(0,72,118);
  --telarus-complimentary: rgb(255, 184, 25);
  --cobalt: #2157d6;
  --cobalt-hover: #133177;
  font-size: 16px;
}

html, body {
  font-family: Tahoma;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body	{ 
  margin: 0; 
  padding: 0; 
  overflow: hidden; 
}

.main {
  color: rgb(70, 70, 70);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: scroll;
}

.header {
  width: 100%;
  align-self: center;
  max-width: 450px;
  padding: 24px;
}

.header.centered {
  margin: 0 auto;
}

.telarus-logo {
  display: flex;
  width: 100%;
  max-width: 380px;
}

.telarus-logo_icon {
  flex: 1 1 0;
  margin: 0;
}

.telarus-logo_icon svg > use:nth-child(2) {
  filter: brightness(0) saturate(100%) invert(24%) sepia(55%) saturate(5316%) hue-rotate(221deg) brightness(91%) contrast(83%);
}

.telarus-logo_icon svg > use:last-child {
  filter: brightness(0) saturate(100%) invert(15%) sepia(17%) saturate(4265%) hue-rotate(195deg) brightness(94%) contrast(102%);
}

.telarus-logo_text {
  flex: 2 2 0;
  fill: var(--cobalt);
  margin: 0 0 0 12px;
}

.title {
  text-align: center;
  padding: 0 24px;
}

.title h1, .title h2, .title h3 {
  font-family: 'Tahoma', sans-serif;
}

.title h1 { 
  font-size: 3em;
  margin: .5em;
}

.title h2 {
  font-size: 2em;
}

.title h3 {
  font-size: 1.25em;
}

.content {
  margin: 0 auto;
  padding: 0 24px;
}

.content h3 {
  font-size: 2em;
  text-align: center;
}

.content p {
  font-size: 1.2em;
  line-height: 1.325;
}

.content .text-center {
  text-align: center;
}

.content p:last-child {
  margin-top: 64px;
  font-size: 1.1em;
}

.content .button {
  background-color: var(--cobalt);
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  padding: 8px 16px;
  transition: all .2s ease-in-out;
}

.content .button:hover {
  background-color: var(--cobalt-hover);
  text-decoration: none;
  color: #fff;
}

.content .button.top-margin {
  margin-top: 20px;
}

.content a:not(.button), .content a:visited:not(.button), .content a:active:not(.button) {
  color: var(--cobalt);
  text-decoration: none;
}

.content a:hover {
  color: var(--cobalt-hover);
  text-decoration: underline;
}

.footer { 
  margin-top: auto;
  text-align: center;
  padding: 24px;
  font-size: 1.1em;
}

.is-hidden {
  display: none;
}

@media (min-width: 768px) {
  .content {
    width: 70%;
    max-width: 900px;
  }
}
