body {
	text-align: center;
	font-family: "courier", monospace;
	text-shadow: 0 0 2px rgba(0,0,0,0.5);
	background-color: #00a8ff;
	font-style: bold;
	/*min-width: 300px;*/
   overflow:hidden;
   margin-right:0px;
}
h1{color:#fff;}
.tedsdad {
   width: 128px;
   height:128px;
   position:fixed;
   padding-top: 100px;
   pointer-events: none;
}
.ted {
   width: 32px;
   height:64px;
   background-image: url("https://github.com/Ratherjolly/Ratherjolly.github.io/blob/master/Assets/GIF/Ted_Walking.gif?raw=true");
   position:fixed;
   cursor:pointer !important;
   pointer-events: auto;
}
.img {
   -moz-transform: scaleX(-1);
   -o-transform: scaleX(-1);
   -webkit-transform: scaleX(-1);
   transform: scaleX(-1);
   filter: FlipH;
   -ms-filter: "FlipH";
}
.tedtext{
   width:140px;
   position: absolute;
   border: 1px solid black;
   border-radius: 5px;
   background-color:#fff;
   margin-top:-25px;
}
#AddT {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    border: 1px solid black;
    text-decoration: none;
    background-color: #fff;
}
.explosion {
  position: absolute;
  width: 600px;
  height: 600px;
  pointer-events: none;
}
.explosion .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  animation: pop 1s reverse forwards;
}

@keyframes pop {
  from {
    opacity: 0;
  }
  to {
    top: 50%;
    left: 50%;
    opacity: 1;
  }
}

.tedtextAfter{
   width:160px;
   position: absolute;
   border: 1px solid black;
   border-radius: 5px;
   background-color:#fff;
   margin:0px -20px 0px 0px;
   cursor:pointer !important;
   animation: drop 0.3s ease-in-out 0s forwards,
      drop3 1s ease-in-out 0s infinite;
}
@keyframes drop {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: 65px;
  }
}
@keyframes drop3 {
  0%,100% {
    transform: scaleY(1) scaleX(1);
  }
  50% {
    transform: scaleY(1.4) scaleX(1.2);
  }
}

.CommentText{
  width:200px;
  position: absolute;
  border: 1px solid black;
  border-radius: 5px;
  background-color:#fff;
  margin-top:-70px;
  margin-left:-200px;
}