body {
  background-color: #000;
  background-image: url('../images/bg.png');
  color:#FBFBFB;
  max-width: 100vw;
  height: 100vh;
      background-repeat: no-repeat;
    background-size: cover;
}
.row {
    margin: 0.5em 0em;
}

.area {
    background-color:rgba(0,0,0,0.5);    
    margin: 1em auto;
    border-radius:10px;
}

.titleText {
  font-size:48px;
  font-weight:bold;
  color:#000;
}
.headerText {
  margin-top:1%;
}

.memesPage {
  height: 800px;
  overflow: auto;
}

.memeIcon {
  width: 200px;
  height: auto;
}

.mcentered {
  margin: 0 auto;
}
.pointer {
	cursor: pointer;
}

.text-bold {
  font-weight: bold;
}

.fullWidth {
  width: 100%;
}

.mt1p {
  margin-top: 1%;
}
.mt2p {
  margin-top: 2%;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
	supported by Chrome and Opera */
}
.mobileOnly {
  display: none;
}
@media only screen and (max-width: 768px) {
  .titleText {
    font-size:24px;
    font-weight:bold;
  }

  .memeIcon {
    width: 98%;
    height: auto;
  }
  .pcOnly {
      display: none;
  }
  .mobileOnly {
      display: block;
  }
}
@media only screen and (max-width: 990px) {
  .pcOnly {
      display: none;
  }
}
