/* 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." */

.underconstruction {
  background-image: url("underconstruction.jpg");
  color: black;
  font-family: Verdana;
  text-align: none;
}

.imageattribution {
  color: white;
}

.sburb {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 95%;
    top: 20%;
}

.sburb img:hover {
    transform: scale(1.2,1.2);
}

.sburb img::after {
    box-shadow: 0 1px 2px rbga(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
}

.sburb img:hover::after {
    opacity: 1;
}

/*whole lotta terribleness here have to fix it all up*/

.sburb img {
    width: 20%;
    box-shadow: 0 1px 2px rbga(0,0,0,0.0);
    transition: all 0.3s ease-in-out;
}
