.text-container { 
 background-color: #ffffff;
 text-align: center;
 max-width: 400px;
 margin: auto;
}

.image {
   content:url(https://i.postimg.cc/MHZyHCfY/IMG-7482.png);
  width: 300px;
  height: auto;
  margin: auto;
}
 
.scroll {
  overflow-x: scroll;
  height: 200px;
width: 300px;
  padding: 10px;
  margin: auto;
}

body {
  background-image: url('https://i.postimg.cc/T1b2g9LH/IMG-7485.jpg');
  background-repeat: repeat;
}

#float {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  	display: flex;
    justify-content: center;
}
 
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }    
}

.site-header p {
color: black;
}

.site-header svg {
color: black;
}

.site-header a {
color: teal;
}

.paste-container {
  align-items: center; 
  justify-content: center; 
align-items: center;
}