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

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}



.stripeswallpaper {
  height:100vh;
  background: repeating-linear-gradient(
  0deg,
  white,
  #e9e9e9 3px,
  #e9e9e9,
  white 6px);
  display:flex;
  flex-direction:column;
  align-items:center;
  }
  
  .macwindow {
    background:white;
    border: 3px solid lightgrey;
    box-shadow:4px 4px 6px 3px grey;
    padding:3vh;
    margin:2vh;
    }
  .macwindow:hover {
      box-shadow:6px 6px 8px 4px grey;
      }
  