* {
    margin: 0;
    padding: 0;
}
body {
    margin: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: black;
    font-family: 'Courier Prime', sans-serif;
}
h1, h2, h3, h4, h5, h6, p {
    padding: 20px;
    color: white;
    margin:0 auto;
    text-align:center;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Text', serif;
}
@media (max-width: 800px) {
    body {
        margin: 20px 5px;
    }
    h1, h2, h3, h4, h5, h6, p {
        padding: 10px;
    }
}
a {
    text-decoration: none;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:50%;
}
@media (max-width: 800px) {
   .center {
    width: 90%;
   }
}
.sampleCards {
    display: flex;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}
.sampleCards img {
    height: auto;
    width: 150px;
}
@media (max-width: 750px) {
    .sampleCards {
        width: 100%;
        flex-wrap: wrap;
        /* justify-content: space-around; */
    }
    .sampleCards img{
        margin: 10px 0px;
    }
} 
.star {
    height: 1em;
    vertical-align: sub;
}
.button-text {
    position:absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    margin: auto;
    height:20vh;
}
.button {
    text-align:center;
    height: 20vh;
    align-content: center;
    display:flex;
    align-items:center; /*or was it center?*/
}
.button :hover {
    background-color: white;
    color:black;
}
.button :active {
    color:white;
    background-color:red;
}
.wrapper {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }