body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

@font-face {
  font-family: 'iconsfont';
  src: url('../font/iconsfont.eot?76249572');
  src: url('../font/iconsfont.eot?76249572#iefix') format('embedded-opentype'),
    url('../font/iconsfont.woff2?76249572') format('woff2'),
    url('../font/iconsfont.woff?76249572') format('woff'),
    url('../font/iconsfont.ttf?76249572') format('truetype'),
    url('../font/iconsfont.svg?76249572#iconsfont') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
  @media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
      font-family: 'iconsfont';
      src: url('../font/iconsfont.svg?76249572#iconsfont') format('svg');
    }
  }
  */

a {
  color: #333;
  text-decoration: none;
  line-height: 1;
  position: relative;
}
a::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #d9a7c7;
  margin: auto;
  transition: all 0.2s;
  transform-origin: bottom;
  z-index: -1;
}
a:hover::after {
  transform: scaleY(4);
  background-color: rgba(217, 167, 199, 0.4);
}

ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

li {
  padding-left: 1em;
  text-indent: -1em;
}

li:before {
  content: '⚜️';
  color: #d9a7c7;
  padding-right: 5px;
}

li.instagram:before {
  font-family: 'iconsfont';
  font-style: normal;
  font-size: 24px;
  content: '\f16d';
}

li.linkedin:before {
  font-family: 'iconsfont';
  font-style: normal;
  font-size: 24px;
  content: '\f30c';
}

li.email:before {
  font-family: 'iconsfont';
  font-style: normal;
  font-size: 24px;
  content: '\e800';
}

li.facebook:before {
  font-family: 'iconsfont';
  font-style: normal;
  font-size: 24px;
  content: '\f308';
}

section {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}
section:first-of-type {
  margin-top: 300px;
}

section h3 {
  border-bottom: 2px solid rgb(217, 167, 199);
  display: inline-block;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 10px;
  margin-top: 20px;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
}

header h1,
header h2 {
  margin: 0;
  padding: 0;
}

header.hero {
  background: #d9a7c7;
  background: -webkit-linear-gradient(to right, #fffcdc, #d9a7c7);
  background: linear-gradient(to right, #fffcdc, #d9a7c7);
  color: white;
  text-shadow: 0 0 10px #d9a7c7;
  text-align: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header.hero h1 {
  font-size: 3rem;
}

header.hero h2 {
  font-size: 2rem;
}
header.hero h1,
header.hero h2 {
  transition: font-size 0.2s;
}
header.hero.scrolled h1 {
  font-size: 1.8rem;
}

header.hero.scrolled h2 {
  font-size: 0.8rem;
}

header img.logo {
  opacity: 0;
  transition: opacity 0.2s;
  position: absolute;
  left: 10px;
  top: 50%;
  max-height: 75px;
  transform: translateY(-50%);
}
header.scrolled img.logo {
  opacity: 1;
}

header img.portrait {
  border-radius: 20%;
  position: absolute;
  max-height: 250px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 0.1s;
  opacity: 1;
}
header.scrolled img.portrait {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

@media screen and (max-width: 600px) {
  header.hero h1 {
    font-size: 2.6rem;
  }
  header.hero h2 {
    font-size: 2rem;
  }
  header img.portrait {
    display: none;
  }
}
.nyan-cat-container{
    display: flex;
    padding: 0;
    justify-content: center;
}