:root {
  --float_rotation: 20deg;
}

body {
  background-color: black;
  color: white;
  font-family: Courier;
  text-align: center;
  background: url(noiseround.gif) center repeat;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 0%;  
  left: 50%; 
}

.heading {
 width: 400px;
 text-align: left;
}

#floater {
  cursor: pointer;
  position: absolute;
  right: 500px;
  bottom: 0px;
  rotate: var(--float_rotation);
  animation: drift 10s infinite alternate ease-in-out;
}

@keyframes drift {
    0% { top: 0; }
  100% { top: 300px; }
}

.widgets {
  white-space: nowrap;
  overflow: scroll;
  width: 100px;
  height: 100px;
  background-color: white;
  border-style: solid;
  border-width: 5px;
  border-color: #4ddbff;
  border-radius: 50px;
}

.transring{
  top: 0px;
}

.childhood {
  width: 250px;
  position: absolute;
  text-align: left;
  right: 750px
}









