
/*-- Standard Rules --*/
*
{
  font-family: quasimoda, sans-serif;
  font-weight: 300;
  font-style: normal;
}

html
{
    margin: 0;
    padding: 0;
    overscroll-behavior-y: contain;
}

body
{
  background-color: #fff;
  padding: 0;
  margin: 0;
  min-width: fit-content;
  overscroll-behavior-y: contain;
}

p
{
  font-size: 18px;
  line-height: 150%;
}

.quas-light
{
    font-family: quasimoda, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.quas-light-italic
{
    font-family: quasimoda, sans-serif;
    font-weight: 300;
    font-style: italic;
}

.quas-regular
{
    font-family: quasimoda, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.quas-regular-italic
{
    font-family: quasimoda, sans-serif;
    font-weight: 400;
    font-style: italic;
}

.vert-nav
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;

  position: fixed;
  right: 50%;
  top: 92%;
  transform: translate(50%,0px);

  z-index: 999;
}

.vert-nav a
{
  cursor: pointer;
  border-radius: 50%;
  background-color: #eee;

  width: 24px;
  height: 24px;
  margin: 0px 10px;
}

.active-nav
{
  animation: colorblend 1s ease-in-out infinite;
}

.flex-container
{
  display: flex;
  align-items: center;
}

.flex-container-directcontrol
{
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.flex-around
{
  justify-content: space-around;
}

.flex-center 
{
  justify-content: center;
}

.main-container 
{
  text-align: center;
  overflow: hidden;
}

.extramargin 
{
  margin: 100px;
}

.title 
{
    font-family: quasimoda;
    font-weight: 300;
    font-style: normal;

    margin: 5px 0px;
    margin-left: 10px;
    color: #3d84ff;

    font-size: 48px;

}

.subtitle 
{
    font-family: quasimoda, sans-serif;
    font-weight: 300;
    font-style: italic;
}

.blurb-container
{
  width: 100%;
  position: relative;
}

.blurb
{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.centerer
{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.blurb h2
{
  font-family: quasimoda, sans-serif;
  font-weight: 300;
  font-style: italic;

  color: #3d84ff;
  font-size: 24px;
  letter-spacing: 2px;
}

.blurb p 
{
  width: 95%;
  line-height: 200%;
  font-size: 20px;
  margin: 25px auto;
}

.cust-type-container
{
  width: 95%;
  margin: 25px auto;
}

.cust-type-container img
{
  display:block;
  margin: 0 auto;
}

.cust-type-container p 
{
  font-size: 16px;
  width: 100%;
}

@media only screen and (min-width: 960px)
{
  .blurb p 
  {
    width: 60%;
  }

  .blurb
  {
    width: 90%;
  }

  .flex-container-directcontrol
  {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .cust-type-container
  {
    width: calc(33.3% - 50px);
    margin: 15px 25px;
  }

  .vert-nav
  {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;

    position: fixed;
    right: 64px;
    top: 50%;

    transform: translate(0px,0px);
  }

  .vert-nav a
  {
    margin: 10px 0px;
  }
}


@keyframes colorblend {
    0% {
        background-color: #8899A6;
    }
    50% {
        background-color: #15202B;
    }
    100% {
        background-color: #8899A6;
    }
}