* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: white;
	font-family: 'GH';
	background-color: #111;
}


.bg-0 {
	width: 100%;
	height: 100vh;
	background: linear-gradient(-45deg, #ee7752 0%, #a24bcf 33%, #4b79cf 66%, #4bc5cf 100%);
    background-size: 600% 600%;

    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    -o-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

.bg-1 {
	width: 100%;
	height: 100vh;
	background: linear-gradient(-45deg, #000000 0%, #cf4b4b 33%, #cf824b 66%, #eee951 100%);
	background-size: 600% 600%;

    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    -o-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

.bg-2 {
	width: 100%;
	height: 100vh;
	background: linear-gradient(-45deg, #4eebe8 0%, #e557c4 33%, #cfa94b 66%, #65ee6c 100%);
	background-size: 600% 600%;

    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    -o-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

div.main {
	padding-top: 60px;
}

h1.name {
	margin-top: 25px;
	margin-bottom: 35px;
	text-align: center;
	font-size: 2.5rem;
}

.card {
	border-radius: .50rem;
}
.card.card-transparent {
	background-image: none;
	background-color: transparent;
	border-color: white;
}

img.icon {
	max-height: 40px;
}

@media screen and (max-width: 575px){
    h1 span {
        display: block;
    }
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 120px;
}

/* Animation */
.parallax>use {
    animation: move-forever 31s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax>use:nth-child(1) {
    animation-delay: -10s;
    animation-duration: 13s;
}
.parallax>use:nth-child(2) {
    animation-delay: -10s;
    animation-duration: 19s;
}
.parallax>use:nth-child(3) {
    animation-delay: -10s;
    animation-duration: 23s;
}
.parallax>use:nth-child(4) {
    animation-delay: -10s;
    animation-duration: 29s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 60px;
        min-height: 60px;
    }
    .content {
        height: 30vh;
    }
    h1 {
        font-size: 24px;
    }
}

@-webkit-keyframes AnimationName {
    0%{background-position:5% 0%}
    50%{background-position:96% 100%}
    100%{background-position:5% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:5% 0%}
    50%{background-position:96% 100%}
    100%{background-position:5% 0%}
}
@-o-keyframes AnimationName {
    0%{background-position:5% 0%}
    50%{background-position:96% 100%}
    100%{background-position:5% 0%}
}
@keyframes AnimationName {
    0%{background-position:5% 0%}
    50%{background-position:96% 100%}
    100%{background-position:5% 0%}
}

@font-face {
  font-family: GH;
  src: url(../fonts/GloriaHallelujah-Regular.ttf);
}
@font-face {
  font-family: SIL;
  src: url(../fonts/ShadowsIntoLight-Regular.ttf);
}
@font-face {
  font-family: C;
  src: url(../fonts/Caveat-Regular.ttf);
}
@font-face {
  font-family: C-bold;
  src: url(../fonts/Caveat-Bold.ttf);
}