/* 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." */

@font-face {
  font-family: 'LilitaOne';
  src: url("https://strawberrytapi.neocities.org/archives/LilitaOne.woff") format("woff");
}

@keyframes bounce {
  0% { transform: translateY(0) rotate(0deg); }
  20% { transform: translateY(1.6px) rotate(0deg); }
  50% { transform: translateY(2.4px) rotate(0deg); }
  80% { transform: translateY(1.6px) rotate(0deg); }
  100% { transform: translateY(0) rotate(0deg); }
  }

body {
  color: white;
  font-family: Verdana;
  background-image: url("archives/images/animhearts.gif"), url('archives/images/pinkbg.png');
  background-color: #dc8aff;
  background-blend-mode: multiply;
  background-size: 7%;
}

#Container {
  display: flex;
  flex-direction: row;
  align-items: flex-start; 
}

#top {
  position:static;
  top: 50px;
  }
  #center {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
    top:50px;
    flex: 1;
    }
  #right{
    position: relative;
    right: 50px;
    top: 50px;
    }
  #left{
    position: relative;
    width: 200px;
    text-align:center;
    left: 50px;
    top: 50px;
    margin-right: 90px;
    }
  #task {
    position: fixed;
    left:0;
    z-index:9;
    bottom:-20px;
    width:100%;
    }

.punk {
  border: pink 3px solid;
  padding: 15px;
  border-radius: 20px;
  background-color: #c08aff;
  background-image: url("archives/images/blinkstar.gif");
  background-blend-mode: multiply;
  background-size: 5%;
  color: pink;
  text-shadow: 3px 3px 3px #450387;
  font-family: Verdana;
}

.ups h1 {
  border: purple 3px solid;
  width: auto; 
  height: auto;
  margin: auto;
  padding: 15px;
  border-radius: 20px;
  text-align: center;
  background-image:  
    url('archives/images/pinkbg.png');
    background-size: 5%;
  background-blend-mode: multiply;
  background-color: #5f0cb3;
  color: #ce99ff;
  text-shadow: 2px 2px 2px #e045ff;
  font-family: 'LilitaOne';
  font-size:300%;
}

.bar {
  border: purple 3px solid;
  width:100%;
  height: auto;
  margin: auto;
  padding: 15px;
  text-shadow: 2px 1px 6px #3c0e7d;
  border-radius: 20px;
  background-color: #b66efa;
   background-image:  url('archives/images/pinkcloudybg.jpg');
  background-blend-mode: multiply;
  color: pink;
  font-family: Verdana;
  background-size: 20%;
}

.image {
  opacity: 0.6;
  transition: 0.2s;
  animation: bounce 1s ease-in-out infinite;
  position: relative;
}

.image:hover {
  opacity: 1;

}  
.block h1{
  border: 0px;
  flex: 1;
  position: relative;
  background-color: violet;
  font-size:400%;
  font-family: 'LilitaOne';
  }

.block {
  border: 0px;
  min-height: 100%;
  height:1100px;
  display: flex;
  flex-direction: column;
  width: 1200px;
  position: relative;
  background-color: violet;
  top: -10px;
  margin:auto;
  margin-bottom: -100px; 
  }