@import url("https://fonts.googleapis.com/css?family=Raleway:900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Alegreya SC");
@import url("https://fonts.googleapis.com/css2?family=Funnel+Display");

/* Scroll wheel */
::-webkit-scrollbar {
  width: 10px;
  height: 90%;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgb(210, 210, 210);
  border-radius: 10px;
}

/* Variables */
:root{
  --white: #fff;
  --black: #111;
  --accent: #b39eb5;
  --accentInvert: #4c614a;
}

html{
  background-color: var(--white);
  color: var(--black);
  font-family: 'Alegreya SC';
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
}

/* Header */ 

.headerDiv{
  top: 0;
  position: sticky;
  display: block;
  background-color: var(--white);
  height: 85px;
  width: 95vw;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  margin: 0 auto 0 auto;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quickNavTxt{
  position: absolute;
  color: inherit;
  font-family: "Funnel Display", serif;
  text-decoration: none;
}

.titleText{
  text-shadow: 0 2px 2px var(--accent);
  padding-top: 50px;
  font-size: 10pt;
  user-select: none;
  font-family: "Funnel Display", serif;
}

/* Central front page */ 

.homeDiv{
  width: 100vw;
  height: 90vh;
  position: relative;
  display: flex;
  justify-content:space-between;
  flex-direction:column;
}

.nameContainer, .wheelContainer{
  height: 100%;
  width: 50%;
  padding: 0;
}

.wheelContainer{
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
}

/* Name text (left side) */

.nameContainer{
  text-align: left;
}

.nameTxt{
  padding: 0;
  font-family: "Funnel Display", serif;
  font-size: 7.5vw;
  margin: 20vh 0 2vh 5vw;
  text-shadow: 0 5px 5px var(--accent);
}

.nameTxtWho{
  font-family: "Funnel Display", serif;
  font-size: 1.25vw;
  width: 9vw;
  color: #252525;
  text-decoration-line: underline;
  margin-left: 6vw;
}

.portfolio{
  font-family: "Funnel Display", serif;
  font-size: 1.5vw;
  width: 9vw;
  color: #252525;
  margin-left: 6vw;
}

/* Down arrow */

.downArrow{
  margin-left: 48vw;
  position: fixed;
  z-index: -1;
  bottom: 0;
  opacity: 1;
  transition: opacity 1s;
}

.downArrow.fade-in-up {
  opacity: 0;
}

.sectionBox{
  position: sticky;
  font-family: "Funnel Display", serif;
  width: 90vw;
  margin: 0 auto 0 auto;
  display: block;
  padding: 1vh 1vw 8vh 1vw;
  height: auto;
  min-height: 800px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background-color: var(--white);
  box-shadow: 10px 0 10px -10px var(--black), -10px 0 10px -10px var(--black);
}
.sectionBreaker{
  background-color: var(--white);
  height: 8vh;
  width: 90vw;
  z-index: -2;
}
.sectionBox > h1{
  text-shadow: 0 2px 2px var(--accent);
  font-size: 35pt;
}
.sectionBox > h2{
  text-shadow: 0 2px 2px var(--accent);
  font-size: 25pt;
  width: 95%;
  margin: 15pt auto 15pt auto;
}
.sectionBox > p{
  font-size: 15pt;
  width: 88%;
  margin: 0 auto 0 auto;
  padding:0;
}
.sectionBox > h1 > img{
  height: 50px;
  position: absolute;
  padding: 10px 0 0 15px;
}

.socialSVG{
  height: 25pt;
  position: relative;
  top: 8pt;
  padding-right: 10pt;
  margin-top:5px;
}

.backToTop{
  opacity: .8;
  font-family: "Funnel Display", serif;
  font-size: 15pt;
  color: var(--black);
  text-decoration: none;
  position: absolute;
  bottom: 1vh;
}
.upArrow{
  width: 13pt;
  padding-bottom:-6pt;
}


.footer{
  margin: 0 auto 0 auto;
  width: 95vw;
  height: 80px;
  background-color: var(--white);
  border-top: 1px solid var(--black);
  text-align: center;
}

.footer > p{
  padding-top: 10px;
  font-family: "Funnel Display",serif;
  font-size: 15pt;
}


@-webkit-keyframes rotate {
  to {transform: rotate(360deg);}
}
@-moz-keyframes rotate {
  to {transform: rotate(360deg);}
}
@-o-keyframes rotate {
  to {transform: rotate(360deg);}
}
@-ms-keyframes rotate {
  to {transform: rotate(360deg);}
}
@keyframes rotate {
  to {transform: rotate(360deg);}
}

/* CSS */
@keyframes fadeInUp {
  from {
    transform: translateY(100px);
    opacity: 0.2;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-up {
  animation: 1s both fadeInUp;
}