@font-face {
  font-family: Acidic;
  src: url(Acidic.TTF)
}

body {
    background: url('page1Gifs/swirl.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'MS PGothic', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
  background-image: url(page1images/weeblyfancy.png);
  width: 750px;
  margin: 60px 0;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  position: relative;
  border-radius: 6px;
  overflow: hidden;

  /* the border */
  border: 50px solid transparent;
  padding: 15px;
  border-image: url("page1images/white\ regal\ frame\ .png") 200 stretch;
  border-image-outset: 15px;
}


.header-image {
    position: relative;
    width: 100%;
    height: auto;
}

.header-image img {
    width: 100%;
    display: block;
}

.divider {
    font-size: 65px;
    display: flex;
    align-items: center;
    background-image: url(page1images/black\ roses\ .PNG);
}

#vinyl-gallery * {
    all: unset;
  }
  
  #vinyl-gallery {
    all: initial;
    width: 100%;
    height: 230px;
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    position: relative;
    margin-left: -6px;
  }
  
  #vinyl-gallery .vinyl {
    perspective: 500px !important;
    width: 18px;
    transition: width 0.5s;
  }
  
  #vinyl-gallery .vinyl:hover {
    width: 148px;
  }
  
  #vinyl-gallery img {
    transition: transform 0.5s, width 0.5s, height 0.5s, margin-top 0.5s;
    width: 180px;
    height: 180px;
    transform: rotateX(0deg) rotateY(25deg);
    transform-style: preserve-3d;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.1);
  }
  
  #vinyl-gallery .vinyl:hover img {
    transform: rotateX(0deg) rotateY(10deg);
    width: 188px;
    height: 188px;
    margin-top: -2px;
  }
  
  #vinyl-gallery .title {
    display: block;
    visibility: hidden;
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    padding-left: 6px;
    color:aliceblue
  }
  
  #vinyl-gallery .vinyl:nth-child(n):hover + .title {
    visibility: visible;
  }

  h1 {
    color: rgb(201, 152, 152);
    text-align: center;
    font-family: Acidic;
  
  }