body {
  color: #ffffff;
  background-image: url(https://i.ibb.co/ZpdLf18L/psychopomp-bg.png);
  background-size: 130%;
  background-color: black;
  background-position: center;
    max-width: 800px;
    max-height: 1800px;
    margin: 50px auto;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-gap: 0px;
    grid-template-columns: 250px minmax(0, 1fr);
  position: relative;
  overflow-y: hidden;
  overflow-x: auto;
  background-repeat: no-repeat;
}


* {
box-sizing: border-box;
}

a:link {
    color:#ffffff
}

a:visited {
    color: #0400ff;
}


header, icon, nav, main, nav2, banner, gallery {
    border: #00145d 3px solid;
    background-color: rgb(0, 0, 0);
    scrollbar-color: #1900ff;
    font-family: 'MS PGothic', sans-serif;
}

nav {
    grid-row: 1 / 2;
    grid-column: 1 / 6;
    height: 40px;
    width: 800px;

}

#navbar ul {
                display: flex;
                padding: 10px;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

main {
    grid-row: 2 / 5;
    grid-column: 1 / 6;
    height: 500px;
}

footer {
    grid-row: 5 / 6;
    grid-column: 1 / 6;
}

ul {
    width: 450px;
}

@keyframes spin {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
  transform: translate(-50%, -50%) rotate(360deg);
}
}

.bow {
   background: url(https://i.ibb.co/fzfsm5mq/roses-blue.png) center;
  position: absolute;
  transition: 2s ease;
  top: 325px;
  margin-right: 800px;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  width: 400px;
  height: 400px;
  opacity: 0.9;
  transition: 2s;
  background-size: contain;
  background-repeat: no-repeat;
}


.bow2 {
   background: url(https://i.ibb.co/fzfsm5mq/roses-blue.png) center;
  position: absolute;
  transition: 2s ease;
  top: 150px;
  margin-left: 800px;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  width: 400px;
  height: 400px;
  opacity: 0.9;
  transition: 2s;
  background-size: contain;
  background-repeat: no-repeat;
}

* {
    scrollbar-color: #08005d #000000;
}

iframe {
    overflow: hidden;
    height: 515px;
     display: block; 
     margin: 0 auto;
}

@media only screen and (max-width: 600px) {
  /* extra css here */
}

