@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Comic+Relief:wght@400;700&display=swap');
body {
  background-color: pink;
  background: radial-gradient(circle,rgba(255, 201, 236, 1) 0%, rgba(245, 142, 190, 1) 95%);
  font-family: "Comic Sans MS", system-ui;
  font-weight: 400;
  overflow: hidden;
  font-size: 1.1em;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #ffa6e0; 
}
::-webkit-scrollbar-thumb {
  background: #c70081; 
}
::-webkit-scrollbar-thumb:hover {
  background: #940060; 
}
::selection {
  background: #FF0099;
  color: #fcf000;
  text-shadow: none;
}

#mydiv {
  position: fixed;
  background-color: #fc92c9;
  display: inline-block;
  background: radial-gradient(circle,rgba(252, 146, 201, 1) 0%, rgba(252, 134, 195, 1) 100%);
  text-align: left;
  width: 1170px;
  height: 80%;
  left: 200px;
  z-index: -1;
  padding-left: 20px;
  right: 0;
  top: 120px;
  border-radius: 0px 0px 20px 20px;
  border: 2px solid rgba(222,25,153,1);
}
#mydivheader {
  padding: 5px;
  border: 2px solid rgba(222,25,153,1);
  background: linear-gradient(0deg,rgba(235, 174, 52, 1) 0%, rgba(255, 223, 128, 1) 100%);  
  z-index: 10;
  background-color: #2196F3;
  width: 1180px;
  left: 200px;
  position: fixed;
  display: inline-block;
  border-radius: 20px 20px 0px 0px;
  color: #fff;
  top:20px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 0px 6px 10px #D7134B;
}

@keyframes up {
  0% { transform: translate(0, 0px); }
  50% { transform: translate(0, 3px); }
  100% { transform: translate(0, -0px); }
}
#mydivheadersillyanimationyay {
  animation-name: up;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  text-align: center;
}