@import url('https://fonts.googleapis.com/css?family=Zilla+Slab&display=swap');


body {
  margin: 0;
  background-image: url("img/diagonal-lines.png");
  animation: move-background 25s linear infinite;
  font-family: 'Zilla Slab', sans-serif;
}

img, .click {
  user-select: none;
}

@keyframes move-background {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 250px;
  }
}

@keyframes load {
  from {
    opacity: 0;
    transform: translate(0, -15px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

h1 {
  font-size: 30pt;
  text-transform: capitalize;
  margin-bottom: 50px;
  transform: rotate(-5deg);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: -100px;
  margin-left: 15px;
  display: inline-block;
  }

#about-me {
  color: #e2b72b;
  background-color: blueviolet;
}

#tips-and-tricks {
  color: #ff947f;
  background-color: aquamarine;
}

#xtra-content {
  background-color: deeppink;
  color: #fff314;
}

#slideshow {
  display: block;
  height: 350px;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 20px;
}

#header-pic {
  margin-left: 10%;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  float: left;
}

aside {
  margin-left: 20px;
}

.content {
  margin: 100px auto 0px auto;
  width: 70%;
  animation: load .25s linear;
}

p {
  font-size: 20pt;
  padding-left: 15px;
  padding-right: 15px;
}

section {
  background-color: #f8eebc;
  border-radius: 25px;
  box-shadow: 10px 10px 5px gray;
  padding-top: 10px;
  padding-bottom: 5px;
}

footer {
  background-color: #483475;
  height: 225px;
  background-image: url("img/seattle-skyline.png");
  background-position: bottom;
  padding-top: 7px;
}

figcaption, footer {
  text-align: center;
}

#footer-text {
  margin: 10px 0px;
  height: 100px;
}

#footer-top {
  height: 10px;
  margin-top: 100px;
  background-image: url("img/footer-top.svg");
}

footer, #footer-top {
  background-repeat: repeat-x;
}

header {
  z-index: 1;
  height: 70px;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-color: #d4ecdc;
}

a {
  color: black;
  margin-top: 4px;
  border-radius: 30px;
  font-size: 18pt;
  padding: 15px;
  text-decoration: none;
}

aside p, a{
  font-weight: bold;
}

a:hover {
  color: whitesmoke;
  background-color: #8fcfc9;
}

h1, a:hover {
  text-decoration: underline;
}

nav, article, #pictures {
  display: flex;
}


article, #pictures {
  justify-content: center;
  align-items: center;
}

nav {
  justify-content: space-evenly;
}

article {
  padding: 12.5px;
  border-bottom-left-radius: 35%;
  border-bottom-right-radius: 35%;
  margin-top: 70px;
  background-color: #7cc9c3;
  box-shadow: 0px 10px 5px gray;
}

figure {
  width: 350px;
  padding: 30px 40px;
  background-color: #dfcf7c;
  border-radius: 15px;
}

figcaption, #footer-text {
  font-size: 14pt;
}

.click {
  opacity: .8;
  width: 75px;
  height: 75px;
}

.click:hover {
  opacity: 100%;
}

#click-left {
  transform: rotate(180deg);
}

li {
  font-size: 16pt;
  list-style-type: none;
  padding-right: 5px;
  padding-top: 5px;
}
li:before {
  content: '\02B50';
  margin-left: -20px;
  margin-right: 10px;
}
