﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}





/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}




/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
  font-size: 16px;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
  font-family:   "Open Sans", Calibri, Arial;
  font-size: 1rem;
  margin: 5rem 0 0 0;
}

h1 {
    font-family: "Montserrat", "Open sans", sans-serif;
    font-weight: 300;
    font-size: 3rem;
    margin: 3rem 0 1rem;
    line-height: 1;
}

.container {
    max-width: 880px;
    margin: 0 auto;
}

p {
    margin: 1rem 0 3rem 0;
}



/* Loader */
.loader {
  display:  inline-block;
  position: relative;
  width:    64px;
  height:   64px;
}


.loader__inner {
    display:       block;
    position:      absolute;
    width:         64px;
    height:        64px;
    margin:        0px;
    border:        8px solid #FFFFFF;
    border-color:  #142C3F transparent transparent transparent;
    border-radius: 50%;
    animation:     loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader__inner:nth-child(1) {
    animation-delay: -0.45s;
}

.loader__inner:nth-child(2) {
    animation-delay: -0.3s;
}

.loader__inner:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

