/* 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." */
html {
  box-sizing: border-box;
  }

*,
*::before,
*::after {
  box-sizing: inherit;
  }

body {
  background-color: #801401;
  background-image: url(/shelf1.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #bdb9a9;
  width: 90%;
  margin: 2em auto;
  font: 1em/1.3
    "Helvetica Bold", "Helvetica", "Arial",
    sans-serif;
  font-family: Verdana;
  min-height: calc(100vh - 400px);
  }

footer {
  width: 100%;
  padding: 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  }
  
button {
  font-size: 250%;
  border: 0;
  background: none;
  cursor: pointer;
  }

button:hover,
button:focus {
  text-shadow: 0 0 2px black;
  }

img,
picture,
video {
  max-width:100%;
  }

h1 {
  font: 3em/1.3 "Displace 2.0"
  }
  
.flexbox {
  display: flex;
  text-align: center;
  align-items: center;
  border: 2px solid black;
  }

.portfolio-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr))/*repeat(4, 1fr)1fr 1fr 1fr 1fr*/;
  /*grid-auto-rows: minmax(100px, auto);*/
  grid-auto-rows: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 1000px;
  align-items: center;
  }
 
.portfolio-item {
  min-width: 200px;
  }
  
@media screen and (max-width: 600px) {
  body {
    color: #bdb9a9;
    }
  }

@media (min-width: 30em) and (max-width: 50em) {
  /* … */
  }

@media (min-width: 30em) and (max-width: 50em) {
  /* … */
  }

@media (min-width: 30em) and (max-width: 50em) {
  /* … */
  }

@media (min-width: 30em) and (max-width: 50em) {
  /* … */
  }
  