/* 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-size: 100% 100%;
    background-image: url(https://cdn.wallpapersafari.com/21/19/BbTINp.jpg);
  background-repeat: round;
  color: white;
  font-family: times;
  cursor: url(https://s3.ezgif.com/tmp/ezgif-3c95294969d3bb.gif), auto;
  display: flex;             /* <-- makes flex container */
  justify-content: center;   /* <-- centers horizontally */
 
  min-height: 100vh;  
}

#title {
  border: 3px yellow; 
      padding: 4px;
      align-items: center;
}

#tilted {
  transform: rotate(10deg);  /* tilt clockwise */
  display: inline-block;
}

h2 {
  text-shadow: 0 0 20px #289AAB, /* Inner glow */
            0 0 30px #289AAB, /* Medium glow */
            0 0 40px #289AAB; /* Outer glow */
            position: absolute;
            
  transform: rotate(-5deg);
 right: 90px;
top: 2em;
    }

#textbox {
    padding: 10px;
    width: 700px;
    align-items: center;
     margin-top: 40px;    /* push whole box down from top */
    font-family: times;
    color: white;
  background: url(https://cdn.wallpapersafari.com/21/19/BbTINp.jpg);
    background-size: 100% 100%;
    text-align: center;
    overflow: auto;
    border: 1px solid black;
 
}
p {
  position: absolute;
  left: 100px;
}
#textintro1 {
 position: absolute;
 left: 200px;
  transform: rotate(20deg);
 top: 15px;
}
#text21 { 
  position: absolute;
  background: white;
  border: 1px black;
  left:100px;
}
#text911 { 
  position: absolute;
  top: 5px;
  left:100px;
}

.container {
  text-align: center;
}
