@charset "UTF-8";
:root {
  --text-color: #fff;
  --background: #000;
  --card-bkg: #121212;
  --gradient-background: linear-gradient(100deg, #F79533 0%, #F37055 15%, #EF4E7B 30%, #A166AB 44%, #5073B8 58%, #1098AD 72%, #07B39B 86%, #6DBA82 100%);
  --nav-gradient: linear-gradient(180deg, #F79533 0%, #EF4E7B 90%);
  --header-polygon: polygon(0% 0%,0% 70%,100% 100%,100% 0%);
  --footer-polygon: polygon(0% 0%,0% 100%,100% 100%,100% 45%);
}

body {
  background-color: var(--background);
  color: var(--text-color);
}
/* Header */
.jumbotron {
  background-image: var(--gradient-background);
  color: var(--text-color);
  clip-path: var(--header-polygon);
  text-align: center;
  height: 400px;
}
.jumbotron h1 {
  font-weight: bold;
  margin-top: .5em;
}
.pad-1 {
  padding: 20px;
}

/* Navigation */

#nav {
  margin-top: -5em;
}

#nav ul {
  list-style: none;
  padding-left: 0;
}
#nav ul li {

    display: inline-block;
    margin-right: 35px;
    font-size: 1.3em;

    background-image: var(--nav-gradient);
    background-position: center;
    background-size: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Rows */
.row > div {
  background-color: var(--card-bkg);
}

/* Favorie Things */

#favorite > div {
  display: block;
  width: auto;
  white-space: nowrap;
  overflow-x: scroll;
}

#favorite > div > div {
  width: 160px;
  display: inline-block;
  overflow: visible;
  vertical-align: top;
}

#favorite > div > div > img {
  width: 150px; height: 215px;
  margin: auto;
  display: block;
}
#favorite > div > .hobby > img {
  width: 150px; height: 150px;
  margin: auto;
  display: block;
}
#favorite >div > div span {
  display: block;
  position: relative;
  white-space: normal;
  padding: 3px;
}


/* Footer */
footer {
  width: 100%;
  height: 200px;
  background-image: var(--gradient-background);
  color: var(--white);
  margin-top: 20px;
  clip-path: var(--footer-polygon);
}
footer > span:first-child {
  padding: 70px 0 0 30px;
}
footer > span {
  display: block;
  font-size: 1.3em;
  padding-left: 30px;
  text-shadow: .1em .1em .2em black;
}
footer > span > a {
  color: var(--text-color);
}

/* Scrollbars */

*::-webkit-scrollbar {
    width: .5em;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

*::-webkit-scrollbar-thumb {
  background-image: var(--gradient-background);

}
