@import url("//fonts.googleapis.com/css?family=Playfair+Display");
html,
body {
  height: 100%;
  margin: 0;
}
body {
  font-family: Century Gothic, sans-serif;
}
main {
  min-height: 100%;
  margin-bottom: -30px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: #222;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
svg path {
  fill: inherit;
}
.social-media {
  width: 70%;
  margin: 0 auto;
}
.social-media .icon {
  width: 15%;
  max-width: 40px;
}
.social-media .icon:hover {
  -webkit-filter: brightness(10);
  filter: brightness(10);
  margin-bottom: -2px;
  border-bottom: 2px solid #ff9800;
}
a {
  color: #9369cd;
}
a:hover {
  color: #653b9e;
}
.post__list {
  font-size: 18px;
}
.item__date {
  color: #999;
  text-align: center;
}
.item__title {
  font-size: 20px;
}
.profile {
  background: url("../imgs/bg-roxo.svg");
  background-size: cover;
  background-color: #6b41a5;
  text-align: center;
  padding: 20px;
}
.profile__avatar {
  max-width: 150px;
  border-radius: 50%;
  border: 3px dotted #653b9e;
  padding: 5px;
  opacity: 0.7;
  transition: opacity 1s;
}
.profile__avatar:hover {
  opacity: 1;
}
.profile__name {
  font-family: 'Playfair Display', serif;
  font-size: 45px;
  margin: 10px 0;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 2px 2px 1px #7349ad;
}
.profile__name::before {
  content: "< ";
}
.profile__name::after {
  content: " >";
}
.profile__name::before,
.profile__name::after {
  color: #ff9800;
  font-weight: 600;
}
.profile__description {
  font-family: Century Gothic, sans-serif;
  font-size: 18px;
  width: 70%;
  margin: 0 auto;
}
.footer,
.push {
  height: 30px;
}
.footer {
  background-color: #dadbdd;
  text-align: center;
  font-size: 12px;
  padding-top: 5px;
}
.post__title {
  color: #653b9e;
}
.post__title::after {
  content: '';
  border-bottom: 3px #ff9800 solid;
  width: 30px;
  height: 4px;
  display: block;
}
.post__date {
  color: #999;
  margin-top: -10px;
}
.post {
  font-size: 18px;
  color: #444;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}
.post a {
  color: #ff9800;
}
.post a:hover {
  background-color: #ffedb8;
}
.post img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
}
.post h3 {
  position: relative;
  padding-left: 20px;
}
.post h3::before {
  content: '';
  background-color: #ff9800;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(45deg);
}
.post ul {
  list-style-type: none;
  list-style-position: inside;
  margin-left: 15px;
}
.post ul li {
  position: relative;
}
.post ul li::before {
  content: '';
  background-color: #ccc;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: -15px;
}
.post ol {
  list-style-type: decimal;
}
.post ol list-style-position inside {
  margin-left: 15px;
}
.post ul ul,
.post ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 5px;
}
.post ol ol,
.post ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 5px;
}
@media (max-width: 480px) {
  .profile__name {
    font-size: 30px;
  }
  .profile__description {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 320px) {
  .profile__name {
    font-size: 28px;
  }
}
