body {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  /* font-size: calc(18px + 0.33vw); */
  -webkit-font-smoothing: antialiased;
  
  min-height: 80vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;

	background: linear-gradient(-45deg, #cebd00, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	-webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
  color: #f9faff;
}

@-webkit-keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.navbar {
  background-color: #f2eded64;
}
.header {
  padding: 10px 16px;
  color: #f1f1f1;
}

.header .click-counter {
  font-size: 10px;
  color: #0000004d;
}
.header .click-counter a{
  color: #0e06066c;
}
.header .click-counter a:hover{
  color: #fff082;
}

.content {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  color: black;
  background-color: #fffffffc;
}
.sticky h2 {
  font-size: 1.3em;
}
.sticky h2 img {
  width: 21px;
  height: 21px;
}

.sticky .click-counter {
  visibility: hidden;
  position: absolute;
  top: -1000px;
}

.sticky + .content {
  padding-top: 102px;
}

/*
    Site container
*/

.container {
  margin-top: 5em;
  margin-left: auto;
  margin-right: auto;
  width: 670px;
}

/*48em*/

@media (max-width: 768px) {
  .container {
    width: 90vw;
  }
}

h1 {
  font-size: 4.5em;
  font-weight: 500;
  margin-bottom: 0;
}
p {
  font-size: 1.6em;
  font-weight: 300;
  line-height: 1.4;
  max-width: 26em;
}

.intro a {
  border-bottom: 3px solid transparent;
  text-decoration: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  color: #fef8e1;
  font-weight: 500;
}

.intro a:hover {
  border-bottom: 1.2px solid #ebac0d;
}


.footer {
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
	text-align: center;
	margin: 3rem;
}

.footer a {
  color: #fff8c6;
  font-weight: 700;
	text-decoration: none;
}

.footer a:hover {
	color: #fff082;
}

.footer .click-counter {
  font-size:0.8em;
  color: #ffffff4d;
}
.footer .click-counter a{
  color: #ffffff6c;
}
.footer .click-counter a:hover{
  color: #fff082;
}

.social-icons {
  font-size: 1.7em;
}

.social-icons .item {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 50%;
  margin: 0.2em;
  transition: .3s all;
  position: relative;
  -webkit-transition: .3s all;
  text-align: center;
  color: #fff;
  -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15);
  -moz-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15);
  box-shadow: 0px 5px 11px 0px rgba(0,0,0,0.18), 0px 4px 15px 0px rgba(0,0,0,0.15);
}

.social-icons.spinned .item:hover {
  -webkit-animation: Social-Icons-Flipping .3s;
  animation: Social-Icons-Flipping .3s
}

.social-icons .item:hover {
  text-decoration: none;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 -1px 0 transparent inset, 0 2px 3px rgba(0, 0, 0, .1), 0 4px 8px rgba(0, 0, 0, .3);
  color: rgb(245, 114, 0);
}

.social-icons .linkedin:hover {
  background-color: #f9faff!important;
  color: #0072b1!important;
}

.social-icons .github:hover {
  background-color: rgb(41, 47, 58)!important;
  color: rgb(34, 141, 255)!important;
}

.social-icons .instagram:hover {
  background-color: rgb(226, 200, 249)!important;
  color: rgb(255, 58, 225)!important;
}

.social-icons .facebook:hover {
  background-color: #4267B2!important;
  color: #fff!important;
}



@-webkit-keyframes Social-Icons-Flipping {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0)
  }
  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg)
  }
}
@keyframes Social-Icons-Flipping {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0)
  }
  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg)
  }
}