@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: 'Indie Flower', cursive;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #34353a;
  color: #ddd;
  text-align: center;
}
.container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.about {
  margin: 25px auto;
}
.me {
  max-width: 250px;
  width: 100%;
  margin: 25px auto;
}
.me img {
  width: 100%;
  border-radius: 50%;
}
.contact-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact a {
  display: inline-block;
  margin: 10px;
  transition: all .25s ease-in-out;
  filter: grayscale(1);
}
.contact a img {
  width: 32px;
  height: auto;
}
.contact a:hover{
  filter: grayscale(0);
}
@media(min-width:667px) {
  .me {
    max-width: 300px;
  }
  .about, .me{
    margin: 50px auto;
  }
  .contact a img {
    width: 64px;
  }
}
#embedim--snow {
  transform: translateX(-25%);
}
@media(min-width:992px) {
  .about h1 {
    font-size: 36px;
  }
  .about div:last-child {
    font-size: 18px;
  }
}