@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bigshot+One&family=Bona+Nova:ital,wght@0,400;0,700;1,400&family=Cinzel+Decorative:wght@400;700;900&family=Croissant+One&family=Goblin+One&family=Gravitas+One&display=swap");
* {
  box-sizing: border-box; }

::selection {
  background-color: #af3434;
  color: white; }

html {
  font-size: 62.5%; }

body {
  font-family: "Bona Nova";
  line-height: 1.6;
  font-size: 2.2rem;
  background-color: #f2efed;
  background-image: url("https://www.toptal.com/designers/subtlepatterns/uploads/ricepaper2.png"); }

h1 {
  font-family: "Cinzel Decorative";
  line-height: 1.2; }

h2, h3, h4, h5, h6 {
  font-family: "Bigshot One";
  font-weight: normal;
  line-height: 1.4; }

a {
  text-decoration: none;
  color: #af3434; }

.button {
  background-color: black;
  color: white;
  padding: 10px 50px;
  transition: background 0.2s ease;
  cursor: pointer; }
  .button:hover {
    background-color: #af3434; }

img {
  max-width: 100%; }

.container {
  max-width: 1600px;
  margin: 0 auto; }

header {
  flex-wrap: wrap; }
  header h1 {
    flex-basis: 30%;
    font-size: 8rem;
    padding: 45px;
    border-top: 5px double black;
    border-left: 5px double black; }
    header h1 span {
      display: block;
      font-size: 2rem; }
  header div {
    flex-basis: 70%;
    padding: 50px; }
  header img {
    width: 45%;
    float: right;
    margin: 25px;
    filter: grayscale(0.75); }

.container {
  display: flex; }

main {
  flex-basis: 70%; }
  main h2::before {
    content: "=== ♦ ===";
    display: block;
    text-align: center;
    margin-bottom: 25px; }
  main img {
    width: 45%;
    float: left;
    margin: 0 25px 10px 0;
    filter: grayscale(0.75); }
  main div {
    margin: 25px 0;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.35); }
    main div:hover {
      border-color: #af3434; }
    main div:hover h2 {
      color: #af3434; }

aside {
  flex-basis: 30%;
  font-size: 2rem;
  padding: 25px; }
  aside h2 {
    margin: 50px 0 0;
    padding-bottom: 10px;
    border-bottom: 3px double black; }
  aside h4 {
    margin: 0; }
  aside li {
    padding: 10px 0;
    list-style-type: " ❖ "; }
    aside li:hover {
      color: #af3434; }
  aside .horoscope li {
    list-style-type: "- "; }
  aside .pub li {
    list-style-type: " ➔ "; }
    aside .pub li img {
      padding: 10px;
      filter: grayscale(0.75); }

@media (max-width: 768px) {
  .container {
    flex-direction: column; }
  main, aside {
    flex-basis: 100%; }
  header, main {
    padding: 25px; } }

footer {
  text-align: center; }
