/*
 * base styles for the body
 */

body {
  font-family: Palatino;
  font-size: 20px;
  line-height: 1.5;
  margin: 20px 300px 20px 50px;
}

/*
 * styling for the banner and the wrapper
 */

.wrapper {
  width: 500px;
  position: relative;
  overflow: hidden;
  padding: 5px;
}

.banner {
  width: 500px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: larger;
  background: red;
  color: white;
  padding: 5px 0;
  text-align: center;
  
  position: absolute;
  transform: rotate(45deg);

  top: 30px;
  left: 200px;
}
