/* 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 likehttps://neocities.org/site_files/text_editor?filename=style.css#
   "how to change link color." */

body {
 background-image: url('outerspace-85.gif');
  color: White;
  font-family: Verdana;
  text-align: center;
}

.title {
  color: Blue;
  font-size: 4em;
  font-weight:bold;
  text-align: center;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.images {
  display: flex;
  flex-direction: column; 
  align-items: center;
  width: 250px;
}

.images img{
 width:250px;
 height: auto;
}

.box {
margin: 90px;
padding: 30px;
border: 3px dotted white;
width: 100%;
}

.blinkies {
margin: 0px 90px 90px 90px;
padding: 30px;
border: 3px dotted white;
width: 85%;
}

.blinkies img{
margin: 20px 0px 20px 0px;
}

.link {
  font-size: 1.5em;
  vertical-align:text-top
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 300px;
}

.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item .desc {
  padding: 15px;
  text-align: center;
}

