* {
  font-family: Oswald, sans-serif;
  color: white;

  text-decoration: none;
}
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;

  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
video {
  object-fit: cover;
}
body {
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  margin: 0;
}
h1 {
  cursor: default;
}
a {
  cursor: pointer;
  color: orange;
  text-decoration: underline;
}

a:hover
{
  color: white;
  filter: drop-shadow(0px 0px 1px orange) drop-shadow(0px 0px 1px orange) drop-shadow(0px 0px 1px orange);
  text-decoration: none;
}

::selection {
  color: black;
  background: white;
}

.appearLeft
{
  animation-name: appearAnimLeft;
  animation-timeline: view();
  animation-range: entry 0% cover 25%;
}
.appearRight
{
  animation-name: appearAnimRight;
  animation-timeline: view();
  animation-range: entry 0% cover 25%;
}
@keyframes appearAnimLeft
{
  from {
          opacity: 0;
          clip-path: inset(0 100% 0 0);
          transform: translateX(-50px);
        }
        to {
          opacity: 1;
          clip-path: inset(0 0 0 0);
        }
}
@keyframes appearAnimRight
{
  from {
          opacity: 0;
          clip-path: inset(0 100% 0 0);
          transform: translateX(50px);
        }
        to {
          opacity: 1;
          clip-path: inset(0 0 0 0);
        }
}

footer {
  background-color: black;
  height: 80px;
  width: 100vw;

  position: relative;
  cursor: default;

  display: flex;
  align-items: center;
  justify-content: center;
}
footer p {
  color: white;
}

.skillList
{
  display: flex;
  justify-content: center;
  flex-direction: column;

  width: 100vw;
  height: 400px;
  margin: auto;
}
.skillList h1
{
  text-align: center;
}
.skillList .list
{
  background-color: white;
  border-radius: 20px;
  height: 150px;

  margin: auto;

  overflow: hidden;
}
.skillList .list .listWrapper p
{
  font-size: 2em;
  color: black;
  text-align: center;
  margin: 0;
}
.skillList .list .listWrapper
{
  display: flex;
  justify-content: center;
  flex-direction: column;

  animation-name: skillList;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.skillList .list .listWrapper2
{
  display: flex;
  justify-content: center;
  flex-direction: column;

  animation-name: skillList2;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 4s;
  opacity: 0;
}
@keyframes skillList2 {
  from
  {
    opacity: 1;
  }
  to
  {
    transform: translateY(-97%);
  }
}
@keyframes skillList {
  from
  {

  }
  to
  {
    transform: translateY(-97%);
  }
}

.construction
{
margin-top: 70px;

  width: 100vw;
  height: 80px;
  display: flex;
  justify-content: center;
  background-color: yellow;

  transition: 0.5s;
}

.construction h1
{
  width: 100%;
  margin: auto;
  text-align: center;
  font-size: 3em;

  color:black;
}

.info
{
  width: 100vw;
  height: 500px;

  display: flex;
  flex-direction: column;

  justify-content: center;
}
.info .textBox
{
  margin: auto;

  width: 60%;
  height: 300px;

  background: white;
  border: 1px solid white;
  border-radius: 20px;

  justify-content: center;
  display: flex;
}
.info .textBox p
{
  margin: auto;
  color: #020202;

  font-size: 1.25em;
  font-size-adjust: auto;
  padding: 25px;
}
.info h1
{
  margin: auto;
  margin-bottom: -15px;
  font-size: 4em;
}

.info .textBox p::selection
{
  background-color: black;
  color: white;
}

.mail {
  position: absolute;
  top: 10px; right: 10px;
  text-align: center;
  z-index: 1;

  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.mail a, .mail p {
  color: #d0d0d0;
  font-family: Oswald, sans-serif;
  height: 30px;
}
.mail p {
  margin: 0;
  margin-left: 30px;
}
.mail p img {
  width: 30px;
  vertical-align: middle;

  opacity: 0.7;
}
.mail a:hover {
  text-decoration: underline;
}

.hero #heroScroll {
  bottom: 15px;
  position: absolute;
  width: 50px;
  height: auto;

  animation: heroScroll 1s ease 0s infinite alternate;
}
@keyframes heroScroll {
  from {bottom: 15px;}
  to {bottom: 30px;}
}
.hero {
  width: 100vw; height: 100vh;
  top: 0; left: 0; position: relative;

  display: flex;
  flex-direction: row;
  justify-content: center;

  background-image: url("images/websiteHero.gif");
  background-size: cover;
  background-color: black;
  cursor: default;

  overflow: hidden;
}
#avatar {
  width: auto;
  height: 500px;
  margin: auto 0;

  animation-name: avatarAnim;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  transform-origin: right;

  transition: 0.1s;
}
#avatar:hover
{
  --avatar-outlinecolor: yellow;
  filter: drop-shadow(0px 0px 5px white) drop-shadow(0px 0px 5px white)
  drop-shadow(0px 0px 10px yellow);
  filter: drop-shadow(0px 0px 5px white) drop-shadow(0px 0px 5px white)
  drop-shadow(0px 0px 10px var(--avatar-outlinecolor));
}
@keyframes avatarAnim {
  0%
  {
    scale: 1;
  }
  50%
  {
    scale: 0.85;
  }
  100%
  {
    scale: 1;
  }
}
.hero-text {
  margin: auto 0;
  padding-left: 40px;
  padding-top: 30px;

  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.hero-text * {
  font-family: Montserrat, sans-serif;
}
.hero-text h1 {
  color: white;
  font-size: 8em;
  line-height: 0.95em;
  margin-bottom: 0px;

  filter: drop-shadow(0 0 10px black) drop-shadow(0 0 10px black) drop-shadow(0 0 10px black);
}
.hero-text p {

  font-size: 2em;
  font-family: Oswald, sans-serif;

}

.outlineHover
{
  color: black;
  filter: drop-shadow(0px 0px 1px yellow) drop-shadow(0px 0px 1px yellow) drop-shadow(0px 0px 1px yellow);
}
.outlineHover:hover
{
  color: yellow;
  filter: none;
}

.hero-text #hero-subtitle span
{
    font-size: 1.5em;
    margin: auto 0px;
    font-family: Montserrat;
}

.hero-text #hero-subtitle span::after {
  color: #FFDD00;

  animation-name: experienceNumberAnim;
  animation-duration: var(--rand, 0.2s);
  animation-iteration-count: infinite;
  content: '1';
}

#hero-subtitle
{
  margin-top: -105px;
  display: flex;
  flex-direction: row;
  grid-gap: 10px;
}
#hero-name {
  margin-bottom: -85px;
}

.social a {
  padding-right: 10px;
}
.social a img {
  width: 38px;
  height: auto;

  border: 3px solid white;
  border-radius: 50px;
  padding: 4px;

  transition: 0.2s;
}
.social a:hover img {
  filter: drop-shadow(0px 0px 5px #FFDD00);
}
.social a:hover
{
  filter: drop-shadow(0px 0px 1px #FFDD00) drop-shadow(0px 0px 1px #FFDD00) drop-shadow(0px 0px 1px #FFDD00);
}

.projects
{
  height: 350px;
}

.projects h1
{
  text-align: center;
  font-size: 4em;
}

.projects .projectList
{
  margin: auto;
  display: flex;

  flex-wrap: wrap;
  justify-content: center;
}

.projectBox
{
  height: 100px;
  padding: 5px;
  margin: 10px;

  background-color: white;
  border-radius: 5px;

  transition: 0.2s;
}

.projectBox:hover
{
  cursor: pointer;
  background-color: yellow;

  margin: 13px;
  padding: 2px;
  border-radius: 2px;
}

.projectBox img
{
  height: 100%;
}

@media only screen and (max-width: 1400px) {
  #avatar
  {
    height: 400px;
  }
  .hero-text h1
  {
      font-size: 6em;
  }

  .projects
  {
    height: 450px;
  }

  .projects .projectList
  {
    width: 90%;
  }
}
@media only screen and (max-width: 1200px) {
  .hero-text h1 {
    font-size: 6em;
  }
  .info .textBox
  {
    width: 75%;
    height: 270px;
  }
  .info .textBox p
  {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 1100px) {
  #avatar
  {
    height: 340px;
  }
  .hero img {
    height: 330px;
  }
  .hero-text h1 {
    font-size: 5em;
  }
  .hero-text p {
    font-size:  1.3em;
  }
  #hero-name {
    margin-bottom: -70px;
  }
  #hero-subtitle
  {
    margin-top: -80px;
  }
  .construction
  {
    height: 70px;
  }
  .construction h1
  {
    font-size: 2.5em;
  }
}
@media only screen and (max-width: 940px) {
  .info .textBox
  {
    height: 300px;
  }
  .info .textBox p
  {
    font-size: 1em;
  }
}
@media only screen and (max-width: 840px) {
  .mail {
    right: 10px;
    flex-direction: column;
    align-items: flex-end;

    transform: translateX(0); left: auto;
    text-align: right;
  }

  #avatar {
    height: 250px;
  }
  .hero-text h1 {
    font-size: 4em;
  }
  .hero-text p {
    font-size:  1em;
  }
  #hero-name {
    margin-bottom: -55px;
  }
  #hero-subtitle {
    margin-top: -40px;
  }

  .construction
  {
    height: 60px;
  }
  .construction h1
  {
    font-size: 2.2em;
  }

  .projects
  {
    height: 500px;
  }
}
@media only screen and (max-width: 650px) {
  .hero-text h1 {
    font-size: 3.6em;
  }
  .info .textBox
  {
    width: 80%;
  }
  .info .textBox p
  {
    font-size: 1em;
  }

  .construction
  {
    height: 50px;
  }
  .construction h1
  {
    font-size: 1.7em;
  }
}
@media only screen and (max-width: 600px) {
  .hero {
    flex-direction: column;

    margin-top: 0px;
    padding-bottom: 0px;
  }
  #avatar {
    height: 264px;
    width: 324px;
    padding-left: 10px;
    margin: 0;

    transform-origin: left;
  }
  .hero-text {
    margin: 0;
    padding-left: 10px;
    padding-top: 0px;
  }
  .hero-text h1 {
    font-size: 5em;
  }
  .hero-text p {
    font-size: 1.3em;
  }
  #hero-name {
    margin-bottom: -50px;
  }
  #hero-subtitle {
    margin-top: -35px;
  }

  .social a img {
    width: 35px;
    border-width: 2px;
  }

  .info .textBox
  {
    height: 340px;
  }
}
@media only screen and (max-width: 540px) {
  .heroText h1 {
    font-size: 2em;
  }

  .construction
  {
    height: 40px;
  }
  .construction h1
  {
    font-size: 1.35em;
  }

  .projects
  {
    height: 500px;
  }

  .projectBox
  {
    height: 85px;
  }
}
@media only screen and (max-width: 480px) {
  .info .textBox
  {
    height: 370px;
  }
  .info .textBox p
  {
    font-size: 1em;
  }

  .projects
  {
    height: 650px;
  }
}
@media only screen and (max-width: 455px) {
  .info .textBox
  {
    height: 370px;
  }
  .info .textBox p
  {
    font-size: 1em;
  }
}
@media only screen and (max-width: 440px) {
  .hero img {
    height: 250px;
    width: 125px;
    padding-left: 10px;
    margin: 0;
  }
  .hero-text h1 {
    font-size: 4em;
  }
  .hero-text p {
    font-size: 1.2em;
  }
  #hero-name {
    margin-bottom: -40px;
  }
  #hero-subtitle {
    margin-top: -30px;
  }

  .social a img {
    width: 30px;
    border-width: 2px;
  }

  .construction
  {
    height: 40px;
  }
  .construction h1
  {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 430px) {
  .info .textBox
  {
    height: 370px;
  }
  .info .textBox p
  {
    font-size: 0.95em;
  }
}
@media only screen and (max-width: 430px) {
  .info .textBox
  {
    height: 370px;
  }
  .info .textBox p
  {
    font-size: 0.95em;
  }
}
@media only screen and (max-width: 405px) {
  .info .textBox
  {
    height: 370px;
  }
  .info .textBox p
  {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 375px) {

  .info
  {
    height: 600px;
  }

  .info .textBox
  {
    height: 390px;
  }

}

@media only screen and (max-width: 350px) {
  .hero img {
    height: 200px;
    width: 100px;
    padding-left: 10px;
    margin: 0;
  }
  .hero-text h1 {
    font-size: 3em;
  }
  .hero-text p {
    font-size: 1em;
  }
  #hero-name {
    margin-bottom: -29px;
  }
  #hero-subtitle {
    margin-top: -22px;
  }

  .social a img {
    width: 25px;
    border-width: 2px;
  }
}

@media only screen and (max-width: 323px) {

  .info .textBox
  {
    height: 410px;
  }

}

@media only screen and (max-width: 306px) {

  .info .textBox
  {
    height: 90%;
  }

}
