@import url('https://fonts.googleapis.com/css2?family=Gelasio&family=PT+Sans&family=Source+Sans+Pro&display=swap');


html {font-family: 'PT Sans', sans-serif;
            font-weight: 200;
 }
body { padding: 1rem;
justify-content: center;
}
a {
color: red;
text-decoration: none;
}

a:hover {
  opacity: 0.4;
}

h2 {
font-size: 13px;
}

.release-container {
display: grid;
width: 90vw;
grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
grid-gap: 50px 1.8em;
text-align: center;
padding-bottom: 100px;
}

.item {
border: 2px solid red;
border-radius: 3px;
background-color: yellow;
height: 250px;
width: 200px;
padding: 10px;
}


@media only screen and (min-width: 600px) {
.release-container{ grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}
}

@media only screen and (max-width: 600px) {
.release-container{
display: block;
}
.item {
width: 50%;
height: 50%;
}
}

.button {
  border: 2px solid red;
  background-color: grey;
  color: yellow;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
}

.button:hover {
 opacity: 0.2;
}



/* This is the pagination code */



.pagination {
padding-top: 18px; 
  font-family: 'PT Sans', sans-serif;
font-size: 17px;
}

.pagination a {
  color: red;
  padding: 5px 10px;
  text-decoration: none;
}

.pagination a.active {
  background-color: #9e9e9e;
border: 1px solid red;
  color: red;
}

.pagination a:hover:not(.active) {background-color: #9e9e9e;}