body {
    background-color: #00a0e1;
}

nav {
    background-color: #ffc200;
}

a {
    color: #ffffff;
    text-decoration: underline;
}

li > a {
    text-decoration: none;
}

.button-collapse {
    text-decoration: none;
}

.bigger-text {
    font-size: 1.25em;
}

.justify {
    text-align: justify;
}

.footer-copyright {
    background-color: #00a0e1 !important;
}

.btn-large {
    background-color: #ffc200;
}

.btn-large:hover {
    background-color: #ffb000;
}

.fit-img {
    max-height:100%;
    padding: 0.3em;
    margin-right: 1em;
}

.footer-copyright {
    padding: 1em;
}

.page-seperator {
    height: 1em;
    background-color: #ffc200;
}

.center-container {
  display: flex;
  justify-content: center;
}

.center-inner {
    align-self: center;
}

.device-height {
  height: calc(100vh - 64px);
  height: -o-calc(100vh - 64px);
  height: -webkit-calc(100vh - 64px);
  height: -moz-calc(100vh - 64px);
}

nav ul a,
nav .brand-logo,
.btn-large,
.blackzz {
  color: #444 !important;
}

p {
  line-height: 2rem;
}

.parallax-container {
  min-height: 380px;
  line-height: 0;
  height: auto;
  color: rgba(255,255,255,.9);
}
.parallax-container .section {
  width: 100%;
}

.icon-block {
  padding: 0 15px;
}
.icon-block .material-icons {
  font-size: inherit;
}

footer.page-footer {
  margin: 0;
}

#cloud {
    display: block;
    position: absolute;
    left: calc(0%-100px);
    top: 15vh;
    min-width: auto;
    min-height: auto;
    width: 160px;
    -webkit-animation: cloudAnim 20s infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-timing-function: linear;
    animation: cloudAnim 20s infinite;
    animation-direction: normal;
    animation-timing-function: linear;
}

@-webkit-keyframes cloudAnim {
    0%   {left: calc(0% - 160px);}
    100% {left: calc(100% + 160px);}
}

@keyframes cloudAnim {
    0%   {left: calc(0% - 160px);}
    100% {left: calc(100% + 160px);}
}