body {
  background-color: #0055aa;
  color: white;
  font-family: sans-serif;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  text-align: center;
  
  border-color: #000022;
.window {
  .titlebar {
    color: #000022;
    margin-top: -24px;
    margin-left: -19px;
    margin-bottom: 15px;
    font-family: 'Courier New', Courier, monospaced;
    word-wrap: break-word;
    text-align: center;
  
    .close {
      display: flex;
      align-items: center;
      justify-content: center;
      
      width: 13px;
      height: 13px;

      border-style: solid;
      border-color: #000022;
      margin-bottom: -17px;
      
      .inside {
        width: 9px;
        height: 10px;
        background-color: #000022;
      }

      &:hover {
        cursor: pointer;
      }
    }
  }
  
  border-radius: 12px;
  border-color: white;
  border-width: 28px 2px 2px 2px;
  border-style: solid;
  margin-bottom: 20px;
  padding: 0 30px 12px;
}
  
  h1 {
    color: #ff8800;
    margin: 0;
  }
  
  .banners {
    background-color: white;
    padding: 10px 0 5px;
    border-radius: 5px;
    margin: 0 15px;
    
    img {
      transition: transform 0.4s ease-in-out;
    }
    
    img:hover {
      transform: scale(2.0);
    }
  }
}