@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap');

* {
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  color: #282a28;
  font-family: 'Ubuntu', sans-serif;
}


/*Content Area -----------------------------------------*/

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 10px;
  padding-bottom: 0px;
  height: 70vh;
  flex-wrap: wrap;
  text-align: center;
  text-transform: uppercase;
}

.container  a img {
  width: 200px;
  height: auto;
  border-radius: 100%;
}

/*hover controls*/

.container a img:hover {
  opacity: 50%;
}

.container a h2:hover{
  color:#dc5353;
}

@media only screen and (max-width: 1000px) {
  .container {
    padding: 0px;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
  }

  .container a img {
    width: 250px;
    height: auto;
    padding: 0;
    border-radius: 100%;
  }
  .container .postersMerch h2 {
    font-size: 20pt;
  }
}

@media only screen and (max-width: 620px) {
  .container {
    padding: 0px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .container a img {
    width: 50%;
    height: auto;
    border-radius: 100%;
  }
}