/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  color: black;
  font-family: Times New Roman;
  font-size: 20px;
  background-color: black;
}

b {
  color: #BC2041;
  text-shadow: 0px 1px 3px;
}

/* i refuse to learn grid or flexbot /s */

.container {
  background-color: black;
  overflow: hidden;
  text-align: center;;
  margin-top: -17px;
}

/*fix this stop being lazy */

.box {
  display: inline-block;
  width: 900px;
  height: 600px;
  background-color: #ffffff00;
  color: pink;
  margin-right: 12px;
  text-align: center;
}

/* covers */

.item {
    vertical-align: top;
    display: inline-block;
    text-align: center;
    width: 200px;
    color: white;
    background-color: black;
    margin-top: 1px;
    padding: 1px;
    background-color: #ffffff00;
}

.item img {
    max-width: 80%;
    background-color: grey;
    border: 1px solid #C62B1D;
}


.title {
  display: block;
  margin-top: 5px;
  font-size: 21px;
  background-color: #ffffff00;
  
  
}

.title span {
}

.caption {
  display: block;
  font-size: 15px;
  width: 170px;
  height: 25px;  
  margin: 0 auto;  
  padding: 5px;
  background-color: #ffffff00;
}


.box3 {
  vertical-align: top;
  display: inline-block;
  background-color: #ffffff00;
  color: white;
  margin-left: 15px;
} 

.box3 b {
  font-size: 28px;
}  
.entry {
  margin: 0 auto;
  background-color: #ffffff00;
  width: 500px;
  height: 420px;
}

.entry img {
  margin: auto;
  display: block;
  background-color: #ffffff00;
  border: 1px solid #C62B1D;
}

/* header */

.header {
  color: #7F1B2F;
  text-shadow: 
    0 0 3px rgba(255, 0, 0, 0.7), /*red glow */
    0 0 10px rgba(255, 0, 0, 0.5); /* larger glow */
  font-size: 85px;
  max-width: 50%;
}


.header p {
}


/* grid */

