@font-face {
    font-family: "PixelOperator"; 
    src: url("https://rebecka.xyz/fonts/PixelOperator.ttf") format("truetype");
}

@font-face {
    font-family: "FT88-Serif"; 
    src: url("https://rebecka.xyz/fonts/FT88-Serif.woff") format("woff");
}

:root {
  --font-family:"Verdana", sans-serif;
  --font-size:x-small;
  --link-color:blue;
  --bg-color:white;
  --text-color:black;
}

body {
  font-family: "PixelOperator";
  font-size: 1em;
  line-height: 1.3em;
  background-color: #000;
  color: #000;
  background-size: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; 
}

body a {
  color:#79E5CB;
}

body a:hover {
  color: #79E5CB;
  text-decoration: line-through;
}

img:hover {
   -webkit-filter: invert(1);
   filter: invert(1);
}

img {
  max-width:100%;
}

.flex {
  display:flex;
}

.center {
  margin: auto;
  padding: 20px;
  width: 100%;
}

.flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flex-item {
  background-image: url("fondopolaroid1.jpg");
  background-size: cover;
  border: 2px solid darkgray;
  box-shadow: 2px 2px 3px #79E5CB;
  padding: 5px;
  width: 180px;
  height: auto;
  margin: 30px;
  line-height: 20px;
  color: black;
  font-weight: normal;
  font-size: 0.8em;
  text-align: center;
  font-family: 'FT88-Serif';
}

.flex-item a {
  color: white;
  text-decoration: none;
  text-shadow: 1px 1px 2px black, 0 0 25px aquamarine, 0 0 5px mediumaquamarine;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
}

.footer {
  margin-top: auto;
  color: #ccc;
  text-align: center;
  padding: 10px;
  overflow: hidden;
}

.footer a {
  text-decoration: none;
  color: #79E5CB;
}

html, body {
  height: 98%;
}

@media only screen and (max-width: 600px) {
   .flex {
     flex-wrap:wrap;
   }
}