+
+
+
+
\ No newline at end of file
diff --git a/css/base.css b/css/base.css
new file mode 100644
index 0000000..ac27d21
--- /dev/null
+++ b/css/base.css
@@ -0,0 +1,283 @@
+@font-face {
+ font-family: 'Poppins';
+ src: url("fonts/Poppins/Poppins-Regular.ttf");
+}
+
+@font-face {
+ font-family: 'Open Sans';
+ src: url("fonts/Open_Sans/OpenSans-Regular.ttf");
+}
+
+@font-face {
+ font-family: 'Astro';
+ src: url("fonts/Astro/astro.ttf");
+}
+
+@font-face {
+ font-family: 'Garamond';
+ src: url("fonts/Garamond/EBGaramond-Regular.ttf");
+}
+
+* {
+ margin: 0px;
+ padding: 0px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ background-color: #131313;
+}
+
+body {
+ overflow-x: hidden;
+}
+
+.nav {
+ position: fixed;
+ width: 100vw;
+ top: 0;
+ z-index: 999;
+}
+
+.nav nav {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ min-height: 8vh;
+ background-color: #131313;
+ font-family: "Poppins", sans-serif;
+}
+
+.nav nav .logo {
+ color: #d4d4d4;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ font-size: 1.75em;
+}
+
+.nav nav .logo h4 {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+
+.nav nav .logo span {
+ padding-left: 20px;
+}
+
+.nav nav ul {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+ width: 30%;
+}
+
+.nav nav ul li {
+ list-style: none;
+}
+
+.nav nav ul span {
+ display: none;
+}
+
+.nav nav ul a {
+ font-family: "Open Sans", sans-serif;
+ color: #d4d4d4;
+ text-decoration: none;
+ font-weight: bold;
+ font-size: 1.1em;
+}
+
+.nav nav ul a:hover {
+ color: white;
+}
+
+.nav nav .nav-active {
+ -webkit-transform: translateX(0%) !important;
+ transform: translateX(0%) !important;
+}
+
+.nav nav .burger {
+ display: none;
+}
+
+.nav nav .burger div {
+ width: 25px;
+ height: 3px;
+ background-color: #d4d4d4;
+ margin: 5px;
+ -webkit-transition: all 0.3s ease;
+ transition: all 0.3s ease;
+}
+
+@media (max-width: 768px) {
+ .nav nav {
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: 20px;
+ }
+ .nav nav .logo img {
+ width: 28px;
+ height: 28px;
+ }
+ .nav nav .logo span {
+ display: none;
+ }
+ .nav nav ul {
+ z-index: 1;
+ -webkit-transform: translateX(100%);
+ transform: translateX(100%);
+ position: absolute;
+ right: 0%;
+ top: 8vh;
+ height: 30vh;
+ width: 100% !important;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ background-color: #131313;
+ -webkit-transition: -webkit-transform 0.5s ease-in;
+ transition: -webkit-transform 0.5s ease-in;
+ transition: transform 0.5s ease-in;
+ transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
+ border-bottom: 3px solid #d4d4d4;
+ }
+ .nav nav ul span {
+ display: block;
+ color: #d4d4d4;
+ font-weight: bold;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ font-size: 1.75em;
+ }
+ .nav nav ul li a {
+ color: #d4d4d4 !important;
+ font-size: 1.2em;
+ font-weight: normal;
+ }
+ .nav nav .burger {
+ display: block !important;
+ }
+ .nav nav .burger.toggle .line1 {
+ -webkit-transform: rotate(-45deg) translate(-5px, 6px);
+ transform: rotate(-45deg) translate(-5px, 6px);
+ }
+ .nav nav .burger.toggle .line2 {
+ opacity: 0;
+ }
+ .nav nav .burger.toggle .line3 {
+ -webkit-transform: rotate(45deg) translate(-5px, -6px);
+ transform: rotate(45deg) translate(-5px, -6px);
+ }
+}
+
+footer {
+ position: relative;
+ margin-top: 10%;
+ height: 10vh;
+ width: 100%;
+}
+
+footer .footer {
+ width: 50%;
+ margin: 0 auto;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ color: #d4d4d4;
+ font-family: "Open Sans", sans-serif;
+}
+
+footer .footer .columns {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+}
+
+footer .footer .columns .logo {
+ margin: auto 0;
+}
+
+footer .footer .columns .logo h4 {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin: auto 0;
+ color: #d4d4d4;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ font-size: 1.2em;
+}
+
+footer .footer .columns .logo span {
+ padding-left: 10px;
+}
+
+footer .footer .columns ul {
+ list-style: none;
+}
+
+footer .footer .columns ul li {
+ color: #868686;
+}
+
+footer .footer .columns ul li:first-child {
+ font-size: 1.2em;
+ padding: 5px 0;
+ color: #939393;
+}
+
+footer .footer .columns ul li a {
+ padding: 4px 0;
+ color: inherit;
+ text-decoration: none;
+}
+
+footer .footer .columns ul li a:hover {
+ color: #acacac;
+}
+
+footer .footer .copyright {
+ color: #797979;
+ text-align: center;
+ font-size: 0.9em;
+ margin: 50px 0;
+}
+
+footer .footer .copyright a {
+ color: inherit;
+}
+/*# sourceMappingURL=base.css.map */
\ No newline at end of file
diff --git a/css/base.sass b/css/base.sass
new file mode 100644
index 0000000..9a10afc
--- /dev/null
+++ b/css/base.sass
@@ -0,0 +1,233 @@
+// colors
+
+$dark: #131313
+$gray: #747474
+$light: #d4d4d4
+$accent: #7DF9FF
+
+$gradient-width: -5px
+
+// fonts
+
+@font-face
+ font-family: 'Poppins'
+ src: url('fonts/Poppins/Poppins-Regular.ttf')
+
+@font-face
+ font-family: 'Open Sans'
+ src: url('fonts/Open_Sans/OpenSans-Regular.ttf')
+
+@font-face
+ font-family: 'Astro'
+ src: url('fonts/Astro/astro.ttf')
+
+@font-face
+ font-family: 'Garamond'
+ src: url('fonts/Garamond/EBGaramond-Regular.ttf')
+
+$hero-stack: 'Astro', sans-serif
+$title-stack: 'Poppins', sans-serif
+$subtitle-stack: 'Open Sans', sans-serif
+$body-stack: 'Poppins', sans-serif
+$serif-title-stack: 'Garamond', serif
+$serif-stack: serif
+
+// mobile
+$mobile-width: 768px
+
+@mixin mobile
+ @media (max-width: #{$mobile-width})
+ @content
+
+@mixin desktop
+ @media (min-width: #{$mobile-width})
+ @content
+
+*
+ margin: 0px
+ padding: 0px
+ box-sizing: border-box
+ background-color: $dark
+
+body
+ overflow-x: hidden
+
+.nav
+ position: fixed
+ width: 100vw
+ top: 0
+ z-index: 999
+
+
+ nav
+ display: flex
+ justify-content: space-around
+ align-items: center
+ min-height: 8vh
+ background-color: $dark
+ font-family: $title-stack
+
+ .logo
+ color: $light
+ text-transform: uppercase
+ letter-spacing: 3px
+ font-size: 1.75em
+
+ h4
+ display: flex
+
+ span
+ padding-left: 20px
+
+ ul
+ display: flex
+ justify-content: space-around
+ width: 30%
+
+ li
+ list-style: none
+
+ span
+ display: none
+
+ a
+ font-family: $subtitle-stack
+ color: $light
+ text-decoration: none
+ font-weight: bold
+ font-size: 1.1em
+
+ &:hover
+ color: white
+
+ .nav-active
+ transform: translateX(0%) !important
+
+ .burger
+ display: none
+
+ div
+ width: 25px
+ height: 3px
+ background-color: $light
+ margin: 5px
+
+ transition: all 0.3s ease
+
+ @include mobile
+ justify-content: space-between
+ padding: 20px
+
+ .logo
+ img
+ width: 28px
+ height: 28px
+
+ span
+ display: none
+
+
+ ul
+ z-index: 1
+ transform: translateX(100%)
+ position: absolute
+ right: 0%
+ top: 8vh
+ height: 30vh
+ width: 100% !important
+ display: flex
+ flex-direction: column
+ align-items: center
+ background-color: $dark
+ transition: transform 0.5s ease-in
+ border-bottom: 3px solid $light
+
+ span
+ display: block
+ color: $light
+ font-weight: bold
+ text-transform: uppercase
+ letter-spacing: 3px
+ font-size: 1.75em
+
+ li a
+ color: $light !important
+ font-size: 1.2em
+ font-weight: normal
+
+ .burger
+ display: block !important
+
+ &.toggle
+ .line1
+ transform: rotate(-45deg) translate(-5px, 6px)
+
+ .line2
+ opacity: 0
+
+ .line3
+ transform: rotate(45deg) translate(-5px, -6px)
+
+footer
+ position: relative
+ margin-top: 10%
+ height: 10vh
+ width: 100%
+
+ .footer
+ width: 50%
+ margin: 0 auto
+ display: flex
+ flex-direction: column
+ color: $light
+ font-family: $subtitle-stack
+
+ .columns
+ display: flex
+ flex: 1
+ flex-direction: row
+ justify-content: space-around
+
+ .logo
+ margin: auto 0
+
+ h4
+ display: flex
+ flex-direction: row
+ align-items: center
+ margin: auto 0
+ color: $light
+ text-transform: uppercase
+ letter-spacing: 3px
+ font-size: 1.2em
+
+ span
+ padding-left: 10px
+
+ ul
+ list-style: none
+
+ li
+ color: lighten($dark, 45%)
+
+ &:first-child
+ font-size: 1.2em
+ padding: 5px 0
+ color: lighten($dark, 50%)
+
+ a
+ padding: 4px 0
+ color: inherit
+ text-decoration: none
+
+ &:hover
+ color: lighten($dark, 60%)
+
+ .copyright
+ color: lighten($dark, 40%)
+ text-align: center
+ font-size: 0.9em
+ margin: 50px 0
+
+ a
+ color: inherit
\ No newline at end of file
diff --git a/css/contact.css b/css/contact.css
new file mode 100644
index 0000000..a5702b4
--- /dev/null
+++ b/css/contact.css
@@ -0,0 +1,410 @@
+@font-face {
+ font-family: 'Poppins';
+ src: url("fonts/Poppins/Poppins-Regular.ttf");
+}
+
+@font-face {
+ font-family: 'Open Sans';
+ src: url("fonts/Open_Sans/OpenSans-Regular.ttf");
+}
+
+@font-face {
+ font-family: 'Astro';
+ src: url("fonts/Astro/astro.ttf");
+}
+
+@font-face {
+ font-family: 'Garamond';
+ src: url("fonts/Garamond/EBGaramond-Regular.ttf");
+}
+
+* {
+ margin: 0px;
+ padding: 0px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ background-color: #131313;
+}
+
+body {
+ overflow-x: hidden;
+}
+
+.nav {
+ position: fixed;
+ width: 100vw;
+ top: 0;
+ z-index: 999;
+}
+
+.nav nav {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ min-height: 8vh;
+ background-color: #131313;
+ font-family: "Poppins", sans-serif;
+}
+
+.nav nav .logo {
+ color: #d4d4d4;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ font-size: 1.75em;
+}
+
+.nav nav .logo h4 {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+
+.nav nav .logo span {
+ padding-left: 20px;
+}
+
+.nav nav ul {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+ width: 30%;
+}
+
+.nav nav ul li {
+ list-style: none;
+}
+
+.nav nav ul span {
+ display: none;
+}
+
+.nav nav ul a {
+ font-family: "Open Sans", sans-serif;
+ color: #d4d4d4;
+ text-decoration: none;
+ font-weight: bold;
+ font-size: 1.1em;
+}
+
+.nav nav ul a:hover {
+ color: white;
+}
+
+.nav nav .nav-active {
+ -webkit-transform: translateX(0%) !important;
+ transform: translateX(0%) !important;
+}
+
+.nav nav .burger {
+ display: none;
+}
+
+.nav nav .burger div {
+ width: 25px;
+ height: 3px;
+ background-color: #d4d4d4;
+ margin: 5px;
+ -webkit-transition: all 0.3s ease;
+ transition: all 0.3s ease;
+}
+
+@media (max-width: 768px) {
+ .nav nav {
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: 20px;
+ }
+ .nav nav .logo img {
+ width: 28px;
+ height: 28px;
+ }
+ .nav nav .logo span {
+ display: none;
+ }
+ .nav nav ul {
+ z-index: 1;
+ -webkit-transform: translateX(100%);
+ transform: translateX(100%);
+ position: absolute;
+ right: 0%;
+ top: 8vh;
+ height: 30vh;
+ width: 100% !important;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ background-color: #131313;
+ -webkit-transition: -webkit-transform 0.5s ease-in;
+ transition: -webkit-transform 0.5s ease-in;
+ transition: transform 0.5s ease-in;
+ transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
+ border-bottom: 3px solid #d4d4d4;
+ }
+ .nav nav ul span {
+ display: block;
+ color: #d4d4d4;
+ font-weight: bold;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ font-size: 1.75em;
+ }
+ .nav nav ul li a {
+ color: #d4d4d4 !important;
+ font-size: 1.2em;
+ font-weight: normal;
+ }
+ .nav nav .burger {
+ display: block !important;
+ }
+ .nav nav .burger.toggle .line1 {
+ -webkit-transform: rotate(-45deg) translate(-5px, 6px);
+ transform: rotate(-45deg) translate(-5px, 6px);
+ }
+ .nav nav .burger.toggle .line2 {
+ opacity: 0;
+ }
+ .nav nav .burger.toggle .line3 {
+ -webkit-transform: rotate(45deg) translate(-5px, -6px);
+ transform: rotate(45deg) translate(-5px, -6px);
+ }
+}
+
+footer {
+ position: relative;
+ margin-top: 10%;
+ height: 10vh;
+ width: 100%;
+}
+
+footer .footer {
+ width: 50%;
+ margin: 0 auto;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ color: #d4d4d4;
+ font-family: "Open Sans", sans-serif;
+}
+
+footer .footer .columns {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+}
+
+footer .footer .columns .logo {
+ margin: auto 0;
+}
+
+footer .footer .columns .logo h4 {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin: auto 0;
+ color: #d4d4d4;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ font-size: 1.2em;
+}
+
+footer .footer .columns .logo span {
+ padding-left: 10px;
+}
+
+footer .footer .columns ul {
+ list-style: none;
+}
+
+footer .footer .columns ul li {
+ color: #868686;
+}
+
+footer .footer .columns ul li:first-child {
+ font-size: 1.2em;
+ padding: 5px 0;
+ color: #939393;
+}
+
+footer .footer .columns ul li a {
+ padding: 4px 0;
+ color: inherit;
+ text-decoration: none;
+}
+
+footer .footer .columns ul li a:hover {
+ color: #acacac;
+}
+
+footer .footer .copyright {
+ color: #797979;
+ text-align: center;
+ font-size: 0.9em;
+ margin: 50px 0;
+}
+
+footer .footer .copyright a {
+ color: inherit;
+}
+
+.contact-wrapper {
+ height: 100vh;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+
+.contact {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ width: 100vw;
+ color: #d4d4d4;
+ background-color: transparent;
+ z-index: 0;
+ margin-bottom: 50px;
+}
+
+.contact #contact {
+ position: relative;
+ padding: 40px 0;
+ background: #131313;
+ width: 100%;
+ max-width: 500px;
+ padding: 25px;
+}
+
+.contact #contact:before {
+ content: '';
+ position: absolute;
+ top: -5px;
+ left: -5px;
+ right: -5px;
+ bottom: -5px;
+ background: linear-gradient(45deg, #ffd800, #ff5520, #750cf2, #0cbcf2);
+ z-index: -1;
+}
+
+.contact #contact:after {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: linear-gradient(45deg, #ffd800, #ff5520, #750cf2, #0cbcf2);
+ z-index: -2;
+ -webkit-filter: blur(40px);
+ filter: blur(40px);
+}
+
+.contact #contact h1 {
+ margin: 0 0 15px;
+ font-family: "Poppins", sans-serif;
+ font-size: 3em;
+}
+
+.contact #contact fieldset {
+ border: none !important;
+ margin: 0 0 10px;
+ min-width: 100%;
+ padding: 0;
+ width: 100%;
+}
+
+.contact #contact input, .contact #contact textarea {
+ font-family: "Open Sans", sans-serif;
+ color: #d4d4d4;
+ border-color: #d4d4d4;
+ width: 100%;
+ margin: 0 0 5px;
+ padding: 10px;
+}
+
+.contact #contact input:last-child, .contact #contact textarea:last-child {
+ margin: 0;
+}
+
+.contact #contact input::-webkit-input-placeholder, .contact #contact textarea::-webkit-input-placeholder {
+ color: #d4d4d4;
+}
+
+.contact #contact input:-ms-input-placeholder, .contact #contact textarea:-ms-input-placeholder {
+ color: #d4d4d4;
+}
+
+.contact #contact input::-ms-input-placeholder, .contact #contact textarea::-ms-input-placeholder {
+ color: #d4d4d4;
+}
+
+.contact #contact input::placeholder, .contact #contact textarea::placeholder {
+ color: #d4d4d4;
+}
+
+.contact #contact textarea {
+ height: 100px;
+ max-width: 100%;
+ resize: none;
+}
+
+.contact #contact button {
+ color: #131313;
+ background: #d4d4d4;
+ width: 100%;
+ padding: 10px 20px;
+ text-transform: lowercase;
+ font-family: "Poppins", sans-serif;
+ font-weight: bold;
+ border: none;
+}
+
+.contact #contact .alternative {
+ font-family: "Open Sans", sans-serif;
+ color: #747474;
+}
+
+.contact #contact .alternative a {
+ color: #747474;
+}
+/*# sourceMappingURL=contact.css.map */
\ No newline at end of file
diff --git a/css/contact.sass b/css/contact.sass
new file mode 100644
index 0000000..7a0c317
--- /dev/null
+++ b/css/contact.sass
@@ -0,0 +1,96 @@
+@import "base"
+
+
+.contact-wrapper
+ height: 100vh
+ display: flex
+ align-items: center
+
+
+.contact
+ position: relative
+ display: flex
+ justify-content: center
+ width: 100vw
+ color: $light
+ background-color: transparent
+ z-index: 0
+ margin-bottom: 50px
+
+ #contact
+ position: relative
+ padding: 40px 0
+ background: $dark
+
+ width: 100%
+ max-width: 500px
+ padding: 25px
+
+ &:before
+ content: ''
+ position: absolute
+ top: $gradient-width
+ left: $gradient-width
+ right: $gradient-width
+ bottom: $gradient-width
+ background: linear-gradient(45deg, #ffd800, #ff5520, #750cf2, #0cbcf2)
+ z-index: -1
+
+ &:after
+ content: ''
+ position: absolute
+ top: 0
+ left: 0
+ right: 0
+ bottom: 0
+ background: linear-gradient(45deg, #ffd800, #ff5520, #750cf2, #0cbcf2)
+ z-index: -2
+ filter: blur(40px)
+
+ h1
+ margin: 0 0 15px
+ font-family: $title-stack
+ font-size: 3em
+
+ fieldset
+ border: none !important
+ margin: 0 0 10px
+ min-width: 100%
+ padding: 0
+ width: 100%
+
+ input, textarea
+ font-family: $subtitle-stack
+ color: $light
+ border-color: $light
+ width: 100%
+ margin: 0 0 5px
+ padding: 10px
+
+ &:last-child
+ margin: 0
+
+ &::placeholder
+ color: $light
+
+ textarea
+ height: 100px
+ max-width: 100%
+ resize: none
+
+ button
+ color: $dark
+ background: $light
+ width: 100%
+ padding: 10px 20px
+ text-transform: lowercase
+ font-family: $title-stack
+ font-weight: bold
+ border: none
+
+ .alternative
+ font-family: $subtitle-stack
+ color: $gray
+
+ a
+ color: $gray
diff --git a/public/css/fonts/Astro/astro.ttf b/css/fonts/Astro/astro.ttf
similarity index 100%
rename from public/css/fonts/Astro/astro.ttf
rename to css/fonts/Astro/astro.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-Bold.ttf b/css/fonts/Garamond/EBGaramond-Bold.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-Bold.ttf
rename to css/fonts/Garamond/EBGaramond-Bold.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-BoldItalic.ttf b/css/fonts/Garamond/EBGaramond-BoldItalic.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-BoldItalic.ttf
rename to css/fonts/Garamond/EBGaramond-BoldItalic.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-ExtraBold.ttf b/css/fonts/Garamond/EBGaramond-ExtraBold.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-ExtraBold.ttf
rename to css/fonts/Garamond/EBGaramond-ExtraBold.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-ExtraBoldItalic.ttf b/css/fonts/Garamond/EBGaramond-ExtraBoldItalic.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-ExtraBoldItalic.ttf
rename to css/fonts/Garamond/EBGaramond-ExtraBoldItalic.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-Italic.ttf b/css/fonts/Garamond/EBGaramond-Italic.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-Italic.ttf
rename to css/fonts/Garamond/EBGaramond-Italic.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-Medium.ttf b/css/fonts/Garamond/EBGaramond-Medium.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-Medium.ttf
rename to css/fonts/Garamond/EBGaramond-Medium.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-MediumItalic.ttf b/css/fonts/Garamond/EBGaramond-MediumItalic.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-MediumItalic.ttf
rename to css/fonts/Garamond/EBGaramond-MediumItalic.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-Regular.ttf b/css/fonts/Garamond/EBGaramond-Regular.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-Regular.ttf
rename to css/fonts/Garamond/EBGaramond-Regular.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-SemiBold.ttf b/css/fonts/Garamond/EBGaramond-SemiBold.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-SemiBold.ttf
rename to css/fonts/Garamond/EBGaramond-SemiBold.ttf
diff --git a/public/css/fonts/Garamond/EBGaramond-SemiBoldItalic.ttf b/css/fonts/Garamond/EBGaramond-SemiBoldItalic.ttf
similarity index 100%
rename from public/css/fonts/Garamond/EBGaramond-SemiBoldItalic.ttf
rename to css/fonts/Garamond/EBGaramond-SemiBoldItalic.ttf
diff --git a/public/css/fonts/Open_Sans/LICENSE.txt b/css/fonts/Open_Sans/LICENSE.txt
old mode 100755
new mode 100644
similarity index 98%
rename from public/css/fonts/Open_Sans/LICENSE.txt
rename to css/fonts/Open_Sans/LICENSE.txt
index d645695..75b5248
--- a/public/css/fonts/Open_Sans/LICENSE.txt
+++ b/css/fonts/Open_Sans/LICENSE.txt
@@ -1,202 +1,202 @@
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/public/css/fonts/Open_Sans/OpenSans-Bold.ttf b/css/fonts/Open_Sans/OpenSans-Bold.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-Bold.ttf
rename to css/fonts/Open_Sans/OpenSans-Bold.ttf
diff --git a/public/css/fonts/Open_Sans/OpenSans-BoldItalic.ttf b/css/fonts/Open_Sans/OpenSans-BoldItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-BoldItalic.ttf
rename to css/fonts/Open_Sans/OpenSans-BoldItalic.ttf
diff --git a/public/css/fonts/Open_Sans/OpenSans-ExtraBold.ttf b/css/fonts/Open_Sans/OpenSans-ExtraBold.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-ExtraBold.ttf
rename to css/fonts/Open_Sans/OpenSans-ExtraBold.ttf
diff --git a/public/css/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf b/css/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf
rename to css/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf
diff --git a/public/css/fonts/Open_Sans/OpenSans-Italic.ttf b/css/fonts/Open_Sans/OpenSans-Italic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-Italic.ttf
rename to css/fonts/Open_Sans/OpenSans-Italic.ttf
diff --git a/public/css/fonts/Open_Sans/OpenSans-Light.ttf b/css/fonts/Open_Sans/OpenSans-Light.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-Light.ttf
rename to css/fonts/Open_Sans/OpenSans-Light.ttf
diff --git a/public/css/fonts/Open_Sans/OpenSans-LightItalic.ttf b/css/fonts/Open_Sans/OpenSans-LightItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-LightItalic.ttf
rename to css/fonts/Open_Sans/OpenSans-LightItalic.ttf
diff --git a/public/css/fonts/Open_Sans/OpenSans-Regular.ttf b/css/fonts/Open_Sans/OpenSans-Regular.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-Regular.ttf
rename to css/fonts/Open_Sans/OpenSans-Regular.ttf
diff --git a/public/css/fonts/Open_Sans/OpenSans-SemiBold.ttf b/css/fonts/Open_Sans/OpenSans-SemiBold.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-SemiBold.ttf
rename to css/fonts/Open_Sans/OpenSans-SemiBold.ttf
diff --git a/public/css/fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf b/css/fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf
rename to css/fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-Black.ttf b/css/fonts/Playfair/PlayfairDisplay-Black.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-Black.ttf
rename to css/fonts/Playfair/PlayfairDisplay-Black.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-BlackItalic.ttf b/css/fonts/Playfair/PlayfairDisplay-BlackItalic.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-BlackItalic.ttf
rename to css/fonts/Playfair/PlayfairDisplay-BlackItalic.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-Bold.ttf b/css/fonts/Playfair/PlayfairDisplay-Bold.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-Bold.ttf
rename to css/fonts/Playfair/PlayfairDisplay-Bold.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-BoldItalic.ttf b/css/fonts/Playfair/PlayfairDisplay-BoldItalic.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-BoldItalic.ttf
rename to css/fonts/Playfair/PlayfairDisplay-BoldItalic.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-ExtraBold.ttf b/css/fonts/Playfair/PlayfairDisplay-ExtraBold.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-ExtraBold.ttf
rename to css/fonts/Playfair/PlayfairDisplay-ExtraBold.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-ExtraBoldItalic.ttf b/css/fonts/Playfair/PlayfairDisplay-ExtraBoldItalic.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-ExtraBoldItalic.ttf
rename to css/fonts/Playfair/PlayfairDisplay-ExtraBoldItalic.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-Italic.ttf b/css/fonts/Playfair/PlayfairDisplay-Italic.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-Italic.ttf
rename to css/fonts/Playfair/PlayfairDisplay-Italic.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-Medium.ttf b/css/fonts/Playfair/PlayfairDisplay-Medium.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-Medium.ttf
rename to css/fonts/Playfair/PlayfairDisplay-Medium.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-MediumItalic.ttf b/css/fonts/Playfair/PlayfairDisplay-MediumItalic.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-MediumItalic.ttf
rename to css/fonts/Playfair/PlayfairDisplay-MediumItalic.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-Regular.ttf b/css/fonts/Playfair/PlayfairDisplay-Regular.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-Regular.ttf
rename to css/fonts/Playfair/PlayfairDisplay-Regular.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-SemiBold.ttf b/css/fonts/Playfair/PlayfairDisplay-SemiBold.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-SemiBold.ttf
rename to css/fonts/Playfair/PlayfairDisplay-SemiBold.ttf
diff --git a/public/css/fonts/Playfair/PlayfairDisplay-SemiBoldItalic.ttf b/css/fonts/Playfair/PlayfairDisplay-SemiBoldItalic.ttf
similarity index 100%
rename from public/css/fonts/Playfair/PlayfairDisplay-SemiBoldItalic.ttf
rename to css/fonts/Playfair/PlayfairDisplay-SemiBoldItalic.ttf
diff --git a/public/css/fonts/Poppins/OFL.txt b/css/fonts/Poppins/OFL.txt
old mode 100755
new mode 100644
similarity index 97%
rename from public/css/fonts/Poppins/OFL.txt
rename to css/fonts/Poppins/OFL.txt
index 76df3b5..246c977
--- a/public/css/fonts/Poppins/OFL.txt
+++ b/css/fonts/Poppins/OFL.txt
@@ -1,93 +1,93 @@
-Copyright 2020 The Poppins Project Authors (https://github.com/itfoundry/Poppins)
-
-This Font Software is licensed under the SIL Open Font License, Version 1.1.
-This license is copied below, and is also available with a FAQ at:
-http://scripts.sil.org/OFL
-
-
------------------------------------------------------------
-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
------------------------------------------------------------
-
-PREAMBLE
-The goals of the Open Font License (OFL) are to stimulate worldwide
-development of collaborative font projects, to support the font creation
-efforts of academic and linguistic communities, and to provide a free and
-open framework in which fonts may be shared and improved in partnership
-with others.
-
-The OFL allows the licensed fonts to be used, studied, modified and
-redistributed freely as long as they are not sold by themselves. The
-fonts, including any derivative works, can be bundled, embedded,
-redistributed and/or sold with any software provided that any reserved
-names are not used by derivative works. The fonts and derivatives,
-however, cannot be released under any other type of license. The
-requirement for fonts to remain under this license does not apply
-to any document created using the fonts or their derivatives.
-
-DEFINITIONS
-"Font Software" refers to the set of files released by the Copyright
-Holder(s) under this license and clearly marked as such. This may
-include source files, build scripts and documentation.
-
-"Reserved Font Name" refers to any names specified as such after the
-copyright statement(s).
-
-"Original Version" refers to the collection of Font Software components as
-distributed by the Copyright Holder(s).
-
-"Modified Version" refers to any derivative made by adding to, deleting,
-or substituting -- in part or in whole -- any of the components of the
-Original Version, by changing formats or by porting the Font Software to a
-new environment.
-
-"Author" refers to any designer, engineer, programmer, technical
-writer or other person who contributed to the Font Software.
-
-PERMISSION & CONDITIONS
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of the Font Software, to use, study, copy, merge, embed, modify,
-redistribute, and sell modified and unmodified copies of the Font
-Software, subject to the following conditions:
-
-1) Neither the Font Software nor any of its individual components,
-in Original or Modified Versions, may be sold by itself.
-
-2) Original or Modified Versions of the Font Software may be bundled,
-redistributed and/or sold with any software, provided that each copy
-contains the above copyright notice and this license. These can be
-included either as stand-alone text files, human-readable headers or
-in the appropriate machine-readable metadata fields within text or
-binary files as long as those fields can be easily viewed by the user.
-
-3) No Modified Version of the Font Software may use the Reserved Font
-Name(s) unless explicit written permission is granted by the corresponding
-Copyright Holder. This restriction only applies to the primary font name as
-presented to the users.
-
-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
-Software shall not be used to promote, endorse or advertise any
-Modified Version, except to acknowledge the contribution(s) of the
-Copyright Holder(s) and the Author(s) or with their explicit written
-permission.
-
-5) The Font Software, modified or unmodified, in part or in whole,
-must be distributed entirely under this license, and must not be
-distributed under any other license. The requirement for fonts to
-remain under this license does not apply to any document created
-using the Font Software.
-
-TERMINATION
-This license becomes null and void if any of the above conditions are
-not met.
-
-DISCLAIMER
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
-OTHER DEALINGS IN THE FONT SOFTWARE.
+Copyright 2020 The Poppins Project Authors (https://github.com/itfoundry/Poppins)
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/public/css/fonts/Poppins/Poppins-Black.ttf b/css/fonts/Poppins/Poppins-Black.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-Black.ttf
rename to css/fonts/Poppins/Poppins-Black.ttf
diff --git a/public/css/fonts/Poppins/Poppins-BlackItalic.ttf b/css/fonts/Poppins/Poppins-BlackItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-BlackItalic.ttf
rename to css/fonts/Poppins/Poppins-BlackItalic.ttf
diff --git a/public/css/fonts/Poppins/Poppins-Bold.ttf b/css/fonts/Poppins/Poppins-Bold.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-Bold.ttf
rename to css/fonts/Poppins/Poppins-Bold.ttf
diff --git a/public/css/fonts/Poppins/Poppins-BoldItalic.ttf b/css/fonts/Poppins/Poppins-BoldItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-BoldItalic.ttf
rename to css/fonts/Poppins/Poppins-BoldItalic.ttf
diff --git a/public/css/fonts/Poppins/Poppins-ExtraBold.ttf b/css/fonts/Poppins/Poppins-ExtraBold.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-ExtraBold.ttf
rename to css/fonts/Poppins/Poppins-ExtraBold.ttf
diff --git a/public/css/fonts/Poppins/Poppins-ExtraBoldItalic.ttf b/css/fonts/Poppins/Poppins-ExtraBoldItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-ExtraBoldItalic.ttf
rename to css/fonts/Poppins/Poppins-ExtraBoldItalic.ttf
diff --git a/public/css/fonts/Poppins/Poppins-ExtraLight.ttf b/css/fonts/Poppins/Poppins-ExtraLight.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-ExtraLight.ttf
rename to css/fonts/Poppins/Poppins-ExtraLight.ttf
diff --git a/public/css/fonts/Poppins/Poppins-ExtraLightItalic.ttf b/css/fonts/Poppins/Poppins-ExtraLightItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-ExtraLightItalic.ttf
rename to css/fonts/Poppins/Poppins-ExtraLightItalic.ttf
diff --git a/public/css/fonts/Poppins/Poppins-Italic.ttf b/css/fonts/Poppins/Poppins-Italic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-Italic.ttf
rename to css/fonts/Poppins/Poppins-Italic.ttf
diff --git a/public/css/fonts/Poppins/Poppins-Light.ttf b/css/fonts/Poppins/Poppins-Light.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-Light.ttf
rename to css/fonts/Poppins/Poppins-Light.ttf
diff --git a/public/css/fonts/Poppins/Poppins-LightItalic.ttf b/css/fonts/Poppins/Poppins-LightItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-LightItalic.ttf
rename to css/fonts/Poppins/Poppins-LightItalic.ttf
diff --git a/public/css/fonts/Poppins/Poppins-Medium.ttf b/css/fonts/Poppins/Poppins-Medium.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-Medium.ttf
rename to css/fonts/Poppins/Poppins-Medium.ttf
diff --git a/public/css/fonts/Poppins/Poppins-MediumItalic.ttf b/css/fonts/Poppins/Poppins-MediumItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-MediumItalic.ttf
rename to css/fonts/Poppins/Poppins-MediumItalic.ttf
diff --git a/public/css/fonts/Poppins/Poppins-Regular.ttf b/css/fonts/Poppins/Poppins-Regular.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-Regular.ttf
rename to css/fonts/Poppins/Poppins-Regular.ttf
diff --git a/public/css/fonts/Poppins/Poppins-SemiBold.ttf b/css/fonts/Poppins/Poppins-SemiBold.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-SemiBold.ttf
rename to css/fonts/Poppins/Poppins-SemiBold.ttf
diff --git a/public/css/fonts/Poppins/Poppins-SemiBoldItalic.ttf b/css/fonts/Poppins/Poppins-SemiBoldItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-SemiBoldItalic.ttf
rename to css/fonts/Poppins/Poppins-SemiBoldItalic.ttf
diff --git a/public/css/fonts/Poppins/Poppins-Thin.ttf b/css/fonts/Poppins/Poppins-Thin.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-Thin.ttf
rename to css/fonts/Poppins/Poppins-Thin.ttf
diff --git a/public/css/fonts/Poppins/Poppins-ThinItalic.ttf b/css/fonts/Poppins/Poppins-ThinItalic.ttf
old mode 100755
new mode 100644
similarity index 100%
rename from public/css/fonts/Poppins/Poppins-ThinItalic.ttf
rename to css/fonts/Poppins/Poppins-ThinItalic.ttf
diff --git a/public/css/index.css b/css/index.css
similarity index 72%
rename from public/css/index.css
rename to css/index.css
index c26ff77..5b2093c 100644
--- a/public/css/index.css
+++ b/css/index.css
@@ -58,6 +58,12 @@ body {
font-size: 1.75em;
}
+.nav nav .logo h4 {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+
.nav nav .logo span {
padding-left: 20px;
}
@@ -178,6 +184,103 @@ body {
}
}
+footer {
+ position: relative;
+ margin-top: 10%;
+ height: 10vh;
+ width: 100%;
+}
+
+footer .footer {
+ width: 50%;
+ margin: 0 auto;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ color: #d4d4d4;
+ font-family: "Open Sans", sans-serif;
+}
+
+footer .footer .columns {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+}
+
+footer .footer .columns .logo {
+ margin: auto 0;
+}
+
+footer .footer .columns .logo h4 {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin: auto 0;
+ color: #d4d4d4;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ font-size: 1.2em;
+}
+
+footer .footer .columns .logo span {
+ padding-left: 10px;
+}
+
+footer .footer .columns ul {
+ list-style: none;
+}
+
+footer .footer .columns ul li {
+ color: #868686;
+}
+
+footer .footer .columns ul li:first-child {
+ font-size: 1.2em;
+ padding: 5px 0;
+ color: #939393;
+}
+
+footer .footer .columns ul li a {
+ padding: 4px 0;
+ color: inherit;
+ text-decoration: none;
+}
+
+footer .footer .columns ul li a:hover {
+ color: #acacac;
+}
+
+footer .footer .copyright {
+ color: #797979;
+ text-align: center;
+ font-size: 0.9em;
+ margin: 50px 0;
+}
+
+footer .footer .copyright a {
+ color: inherit;
+}
+
.hero {
color: #d4d4d4;
position: relative;
@@ -210,7 +313,7 @@ body {
background-color: transparent;
}
-.about {
+.about-section {
position: relative;
color: #d4d4d4;
overflow: hidden;
@@ -218,40 +321,159 @@ body {
text-align: center;
}
-.about #about {
+.about-section .about {
position: absolute;
}
-.about #about h1 {
+.about-section .about h1 {
font-size: 4em;
font-family: "Open Sans", sans-serif;
}
-.about #about h4 {
+.about-section .about h4 {
font-size: 1em;
font-family: "Open Sans", sans-serif;
margin-left: 20%;
width: 60%;
}
-.about #about button {
+.about-section .about button {
padding: 10px 20px;
border: 3px solid #d4d4d4;
text-transform: uppercase;
+ font-size: 1.5em;
margin-top: 30px;
border-radius: 20px;
font-family: "Astro", sans-serif;
}
-.about #about button a {
+.about-section .about button a {
color: #d4d4d4;
text-decoration: none;
}
-.about div canvas {
+.about-section div canvas {
margin: -5% 0;
}
+.about-section .about-1 {
+ margin-top: 8vh;
+}
+
+.about-section .about-2 {
+ position: relative;
+ height: 100vh;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+
+.about-section .about-2 .about {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+}
+
+.about-section .about-2 .about * {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+}
+
+.about-section .about-2 .about img {
+ width: 50%;
+ height: 50%;
+}
+
+.about-section .about-3 {
+ position: relative;
+ height: 100vh;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+
+.about-section .about-3 .about {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+}
+
+.about-section .about-3 .about * {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+}
+
+.about-section .about-3 .about img {
+ width: 50%;
+ height: 50%;
+}
+
+.about-section .about-4 {
+ position: relative;
+ height: 100vh;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+
+.about-section .about-4 .about {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+}
+
+.about-section .about-4 .about * {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+}
+
+.about-section .about-4 .about img {
+ width: 50%;
+ height: 50%;
+}
+
.founders {
position: relative;
display: -webkit-box;
@@ -278,7 +500,7 @@ body {
.founders .profile img {
width: 200px;
height: 200px;
- background-color: #ffd1dc;
+ background-color: #7DF9FF;
border-radius: 50%;
}
@@ -323,133 +545,6 @@ body {
font-family: "Open Sans", sans-serif;
}
-.timeline {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- height: auto;
- color: #d4d4d4;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- margin-bottom: 5%;
-}
-
-.timeline .header {
- margin-bottom: 2%;
- font-family: "Poppins", sans-serif;
- font-size: 4em;
-}
-
-.timeline #timeline {
- max-width: 800px;
- margin: 0 auto;
- margin-bottom: 2%;
- position: relative;
-}
-
-.timeline #timeline ul {
- list-style: none;
-}
-
-.timeline #timeline ul li {
- border: 8px solid #747474;
- padding: 20px;
- color: white;
- border-radius: 10px;
- margin-bottom: 20px;
-}
-
-.timeline #timeline ul li:last-child {
- margin-bottom: 0;
-}
-
-.timeline #timeline ul li .content h1 {
- font-family: "Open Sans", sans-serif;
- font-weight: bold;
- font-size: 25px;
- line-height: 30px;
- margin-bottom: 10px;
-}
-
-.timeline #timeline ul li .content p {
- font-family: "Poppins", sans-serif;
- font-weight: normal;
- font-size: 16px;
- line-height: 30px;
-}
-
-.timeline #timeline ul li .content .date {
- font-family: monospace;
- font-weight: normal;
- font-size: 12px;
- margin-bottom: 10px;
- letter-spacing: 2px;
-}
-
-@media (min-width: 768px) {
- .timeline #timeline:before {
- content: "";
- position: absolute;
- top: 0;
- left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- width: 2px;
- height: 100%;
- background-color: #d4d4d4;
- }
- .timeline #timeline .date {
- position: absolute;
- top: -30px;
- }
- .timeline #timeline ul li {
- width: 50%;
- position: relative;
- margin-bottom: 50px;
- }
- .timeline #timeline ul li:nth-child(odd) {
- float: left;
- clear: right;
- -webkit-transform: translateX(-30px);
- transform: translateX(-30px);
- border-radius: 20px 0px 20px 20px;
- }
- .timeline #timeline ul li:nth-child(odd)::before {
- -webkit-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
- right: -38px;
- }
- .timeline #timeline ul li:nth-child(even) {
- float: right;
- clear: left;
- -webkit-transform: translateX(30px);
- transform: translateX(30px);
- border-radius: 0px 20px 20px 20px;
- }
- .timeline #timeline ul li:nth-child(even)::before {
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- left: -38px;
- }
- .timeline #timeline ul li::before {
- content: "";
- position: absolute;
- height: 20px;
- width: 20px;
- border-radius: 50%;
- background-color: #747474;
- top: 0;
- }
-}
-
.contact {
position: relative;
display: -webkit-box;
diff --git a/css/index.sass b/css/index.sass
new file mode 100644
index 0000000..5a099ed
--- /dev/null
+++ b/css/index.sass
@@ -0,0 +1,331 @@
+@import "base"
+
+.hero
+ color: $light
+ position: relative
+ width: 100vw
+ height: 100%
+
+ #hero
+ position: absolute
+ left: 10%
+ top: 20%
+ background-color: transparent
+ z-index: 1
+
+ h1
+ font-family: $hero-stack
+ text-align: left
+ font-size: 8em
+ padding: 0.5em 0.5em 0
+ background: -webkit-linear-gradient(#eee 70%, #333 100%)
+ -webkit-background-clip: text
+ -webkit-text-fill-color: transparent
+
+ h3
+ font-family: "Open Sans", serif
+ text-align: left
+ font-size: 2em
+ background-color: transparent
+
+
+.about-section
+ position: relative
+ color: $light
+ overflow: hidden
+ background-color: transparent
+ text-align: center
+
+ .about
+ position: absolute
+
+ h1
+ font-size: 4em
+ font-family: $subtitle-stack
+
+ h4
+ font-size: 1em
+ font-family: $subtitle-stack
+ margin-left: 20%
+ width: 60%
+
+ button
+ padding: 10px 20px
+ border: 3px solid $light
+ text-transform: uppercase
+ font-size: 1.5em
+ margin-top: 30px
+ border-radius: 20px
+ font-family: $hero-stack
+
+ a
+ color: $light
+ text-decoration: none
+
+ div canvas
+ margin: -5% 0
+
+ .about-1
+ margin-top: 8vh
+
+ .about-2
+ position: relative
+ height: 100vh
+ display: flex
+ align-items: center
+
+ .about
+ display: flex
+ flex-direction: row
+ align-items: center
+ justify-content: center
+
+ *
+ flex: 1 1 0
+
+ img
+ width: 50%
+ height: 50%
+
+ .about-3
+ position: relative
+ height: 100vh
+ display: flex
+ align-items: center
+
+ .about
+ display: flex
+ flex-direction: row
+ align-items: center
+ justify-content: center
+
+ *
+ flex: 1 1 0
+
+ img
+ width: 50%
+ height: 50%
+
+ .about-4
+ position: relative
+ height: 100vh
+ display: flex
+ align-items: center
+
+ .about
+ display: flex
+ flex-direction: row
+ align-items: center
+ justify-content: center
+
+ *
+ flex: 1 1 0
+
+ img
+ width: 50%
+ height: 50%
+
+
+.founders
+ position: relative
+ display: flex
+ height: auto
+ color: $light
+ align-items: center
+ justify-content: center
+
+ .profile
+ flex: 1 1 0
+ margin: 0 auto
+ text-align: center
+
+ img
+ width: 200px
+ height: 200px
+ background-color: $accent
+ border-radius: 50%
+
+ h1
+ font-family: $title-stack
+ font-size: 1.6em
+ margin-top: 0.3em
+
+ h2
+ font-family: $title-stack
+ font-weight: normal
+ font-size: 1em
+
+ p
+ font-family: sans-serif
+ width: 60%
+ margin: 0 auto
+ margin-top: 0.5em
+
+ a
+ text-decoration: none
+ color: #11c1e0
+
+ .caption
+ flex: 1.5 1 0
+ text-align: center
+
+ h1
+ font-family: $title-stack
+ font-size: 5em
+ white-space: nowrap
+
+ p
+ font-family: $subtitle-stack
+
+.contact
+ position: relative
+ display: flex
+ justify-content: center
+ width: 100vw
+ height: auto
+ color: $light
+ background-color: transparent
+ z-index: 0
+ margin-bottom: 50px
+
+ #contact
+ position: relative
+ padding: 40px 0
+ background: $dark
+
+ width: 100%
+ max-width: 500px
+ padding: 25px
+
+ &:before
+ content: ''
+ position: absolute
+ top: $gradient-width
+ left: $gradient-width
+ right: $gradient-width
+ bottom: $gradient-width
+ background: linear-gradient(45deg, #ffd800, #ff5520, #750cf2, #0cbcf2)
+ z-index: -1
+
+ &:after
+ content: ''
+ position: absolute
+ top: 0
+ left: 0
+ right: 0
+ bottom: 0
+ background: linear-gradient(45deg, #ffd800, #ff5520, #750cf2, #0cbcf2)
+ z-index: -2
+ filter: blur(40px)
+
+ h1
+ margin: 0 0 15px
+ font-family: $title-stack
+ font-size: 3em
+
+ fieldset
+ border: none !important
+ margin: 0 0 10px
+ min-width: 100%
+ padding: 0
+ width: 100%
+
+ input, textarea
+ font-family: $subtitle-stack
+ color: $light
+ border-color: $light
+ width: 100%
+ margin: 0 0 5px
+ padding: 10px
+
+ &:last-child
+ margin: 0
+
+ &::placeholder
+ color: $light
+
+ textarea
+ height: 100px
+ max-width: 100%
+ resize: none
+
+ button
+ color: $dark
+ background: $light
+ width: 100%
+ padding: 10px 20px
+ text-transform: lowercase
+ font-family: $title-stack
+ font-weight: bold
+ border: none
+
+ .alternative
+ font-family: $subtitle-stack
+ color: $gray
+
+ a
+ color: $gray
+
+footer
+ position: relative
+ margin-top: 10%
+ height: 10vh
+ width: 100%
+
+ .footer
+ width: 50%
+ margin: 0 auto
+ display: flex
+ flex-direction: column
+ color: $light
+ font-family: $subtitle-stack
+
+ .columns
+ display: flex
+ flex: 1
+ flex-direction: row
+ justify-content: space-around
+
+ .logo
+ margin: auto 0
+
+ h4
+ display: flex
+ flex-direction: row
+ align-items: center
+ margin: auto 0
+ color: $light
+ text-transform: uppercase
+ letter-spacing: 3px
+ font-size: 1.2em
+
+ span
+ padding-left: 10px
+
+ ul
+ list-style: none
+
+ li
+ color: lighten($dark, 45%)
+
+ &:first-child
+ font-size: 1.2em
+ padding: 5px 0
+ color: lighten($dark, 50%)
+
+ a
+ padding: 4px 0
+ color: inherit
+ text-decoration: none
+
+ &:hover
+ color: lighten($dark, 60%)
+
+ .copyright
+ color: lighten($dark, 40%)
+ text-align: center
+ font-size: 0.9em
+ margin: 50px 0
+
+ a
+ color: inherit
\ No newline at end of file
diff --git a/css/res/ani.jpg b/css/res/ani.jpg
new file mode 100644
index 0000000..aed873a
Binary files /dev/null and b/css/res/ani.jpg differ
diff --git a/public/css/res/brain.svg b/css/res/brain.svg
similarity index 88%
rename from public/css/res/brain.svg
rename to css/res/brain.svg
index c06a665..5ac314d 100644
--- a/public/css/res/brain.svg
+++ b/css/res/brain.svg
@@ -1,119 +1,119 @@
-
-
-
+
+
+
diff --git a/css/res/file-earmark-lock.svg b/css/res/file-earmark-lock.svg
new file mode 100644
index 0000000..6b6f362
--- /dev/null
+++ b/css/res/file-earmark-lock.svg
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/css/res/leon.jpg b/css/res/leon.jpg
new file mode 100644
index 0000000..9db009f
Binary files /dev/null and b/css/res/leon.jpg differ
diff --git a/public/css/res/lock.svg b/css/res/lock.svg
similarity index 99%
rename from public/css/res/lock.svg
rename to css/res/lock.svg
index ca0cd4a..e61c211 100644
--- a/public/css/res/lock.svg
+++ b/css/res/lock.svg
@@ -1,3 +1,3 @@
-