/* Reset some default styles */
html, body, header, footer, h1, h2, h3, blockquote, p, ul, li {
  margin: 0;
  padding: 0;
}

body {
  font-family: Roboto, Arial, sans-serif;
  line-height: 1.6;

  background: linear-gradient(233deg, #0e7b94,#0e9471);
  background-size: 400% 400%;

  animation: GradientAnimation 25s ease infinite;
}

a {
  color: #07414e;
  text-decoration: none;
  border-bottom: 1px dashed;
}

h1, h2 {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}
h1 {
  font-size: 4em;
}
h3 {
    font-weight: normal;
    color: #111;
}

blockquote {
  position: relative;
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.2);
  color: #222;
}
blockquote::before, blockquote::after {
    position: absolute;
    top: -25px;
    font-size: 8em;
    color: rgba(150, 200, 200);
    line-height: 1;
}
blockquote::before {
    content: "“";
    left: -10px;
    transform: rotate(-6deg);
}
blockquote::after {
    content: "”";
    right: -10px;
    transform: rotate(6deg);
}



header {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 1s;
}
header:hover {
  color: #fff;
  transform: scale(1.03);
}
header p {
    color:rgba(255, 255, 255, 0.65);
}

section {
  position: relative;
  padding: 25px 35px;
  max-width: 80%;
  margin: 25px auto;
  border-radius: 50px;
  background-color:rgba(255, 255, 255, 0.20);
  transition: all 1s;
  text-align: center;
}
section:hover {
  background-color:rgba(255, 255, 255, 0.28);
}
h2 {
    transform: rotate(-6deg);
    position: absolute;
    top: -20px;
    left: -20px;
    background: rgba(150, 200, 200);
    padding: 0 9px;
    transition: all 1s;
}
section:hover h2 {
  transform: rotate(-6deg) scale(1.1);
}

.skills ul {
  list-style-type: none;
}
.skills li {
  display: inline-block;
}
.skills li:after {
  content: ', '
}
.skills li:last-child:after {
  content: ''
}

.job {
  margin-bottom: 20px;
}

footer {
  color: rgba(255, 255, 255, 0.3);
    text-align: right;
    padding: 0 10% 25px;
}
footer .copyright {
  display: inline-block;
  color: rgba(255, 255, 255, 0.3);
  transition: all 1s;
}
footer:hover .copyright {
  animation: rotating 3s linear infinite;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes rotating {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

@keyframes GradientAnimation {
    0%{background-position:0% 53%}
    50%{background-position:100% 48%}
    100%{background-position:0% 53%}
}
