/* Default styles */
@font-face {
  font-family: 'dinosaur';
  src: url('Dinosaur.ttf') format('truetype');
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,1) 38%, rgba(64,90,61,1) 100%);
}

::-webkit-scrollbar-thumb {
  background: #434343;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body {
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,1) 38%, rgba(64,90,61,1) 100%);
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #686868;
  }
.image-container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
  text-align: center;
  text-decoration: underline;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
header {
  font-family: "dinosaur";
  font-size: 20px;
	background-color: black;
	color: #405a3d;
	text-align: center;
  margin: 0;
}
h2 {
  text-align: center;
}
/* Media queries */
@media screen and (max-width: 480px) {
	.image-container {
		flex-direction: column;
		align-items: center;
	}

	.image-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }
}

@media screen and (min-width: 481px) and (max-width: 800px) {
	.image-container {
		flex-direction: column;
		align-items: center;
	}

	.image-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }
}
