html {
  background: url(../wp2.jpg);
  background-size: 120%;
  background-attachment: fixed;
}
body {
  padding-top: 60px;
}
menu {
  position: absolute;
}
main {
  max-width: 1200px;
  margin: auto;
}
article {
  float: left;
  margin: 1.2%;
  position: relative;
  padding-right: 60px;
  background-color: white;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.33);
  min-height: 170px;
}
article h4 {
  margin: 0;
  color: black;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 10px 12px 8px;
  border-bottom: 1px dashed;
  font-family: 'Bungee Inline', sans-serif;
  line-height: 25px;
}
h5 {
  margin: 7px 20px;
}
p {
  margin: 0;
  padding: 0px 10px 10px;
}
aside {
  color: rgba(255, 255, 255, 0.9);
  background-color: black;
  height: 100%;
  right: 0;
  width: 60px;
  position: absolute;
  top: 0;
  text-align: center;
}
aside span {
  margin-bottom: 20px;
  display: inline-block;
  min-width: 42px;
}
aside > i {
  position: relative;
  left: -14px;
  font-size: 0.9em;
  top: 4px;
}
aside button {
  background-color: white;
  border: 1px solid black;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  position: absolute;
  bottom: 12px;
  left: 7.5px;
  font-size: 16px;
  transition: 0.1s ease-in-out, 0.3s opacity;
}
aside button:not(:disabled) {
  cursor: pointer;
}
aside button[title^=P] i {
  text-indent: 2px;
}
aside button:hover:not(:disabled) {
  width: 50px;
  height: 50px;
  bottom: 9.5px;
  left: 5px;
  line-height: 50px;
  font-size: 17.77px;
}
#dialog {
  background-color: white;
  width: 310px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#dialog i {
  position: absolute;
  right: 6px;
  top: 4px;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}
#dialog i:hover {
  text-shadow: 0 0 10px #ffffff78;
}
#dialog p {
  padding: 20px 12px;
  text-align: left;
  margin: 0;
}
#dialog h4 {
  margin: 0;
  padding: 6px 11px;
  background-color: #3c3c3c;
  color: white;
  font-size: 0.95em;
  border: 1px solid #c7c7c7;
  border-bottom: 0;
  text-align: left;
  font-family: 'Bungee Inline', sans-serif;
  font-weight: normal;
  line-height: 20px;
}
#dialog button {
  border: 0;
  height: 29px;
  width: 70px;
  font-size: 0.9em;
  margin: 0px 5px 10px;
  background-color: #eeeeee;
  box-shadow: 0 0 2px #0000003d;
  transition: 0.2s;
  cursor: pointer;
}
#dialog button:hover {
  box-shadow: 0 0 10px 0px #00000027;
}
#dialog button.ok:hover {
  box-shadow: 0 0 10px 0px #00000059;
}
#dialog button.ok {
  color: white;
  background-color: #3c3c3c;
}
@media only screen and (max-width: 600px) {
  article {
    width: 97.6%;
    max-width: 400px;
    margin: 3% auto;
    float: none;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1000px) {
  article {
    width: 47.6%
  }
  article:nth-of-type(odd) {
    clear: left;
  }
}
@media only screen and (min-width: 1001px) {
  article {
    width: 30.933%
  }
  article:nth-of-type(3n + 1) {
    clear: left;
  }
}