@import url('https://fonts.googleapis.com/css2?family=Arapey&family=Playfair+Displaydisplay=swap');

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

h2 {
    color: firebrick;
}

h5 {
    color: #121212;
    font-family: 'Arapey', sans-serif;
    font-size: 20px;
    font-weight: 700;
}
p {
    color: #5A5A5A;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    font-family: 'Playfair Display', serif;
    color:firebrick;
}

.category-button {
    border: none;
    background-color: inherit;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
}

.category-button:hover{
    background: #eee;
}

.category-button.active{
    background-color: firebrick;
    color: white;
}

.center-horizontal {
    margin: 0 auto;
}

.like {
    cursor: pointer;
}

.red {
    color: firebrick;
}

#loading {
    display: none;
    width: 50px;
    height: 50px;
    border: 5px solid rgb(26 108 97 / 56%);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    position: fixed;
    top: 50%;
    left: 50%;
  }
  
  @keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @-webkit-keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
    }
  }
  