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



body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

a {
    text-decoration: none;
    padding: 2px;
}

.centerclass{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

/* I got the following snippet from https://css-tricks.com/using-flexbox/ */
.searchbarcontainer{
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}












.nav,
.searchoption {
    -webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;         /* OLD - Firefox 19- */
                 /* For old syntax, otherwise collapses. */
    -webkit-flex: 1;          /* Chrome */
    -ms-flex: 1;              /* IE 10 */
    flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.nav {
    -webkit-box-ordinal-group: 1;  
    -moz-box-ordinal-group: 1;     
    -ms-flex-order: 1;     
    -webkit-order: 1;  
    order: 1;
}
.searchbar {
    -webkit-box-ordinal-group: 2;   /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 2;      /* OLD - Firefox 19- */
    -ms-flex-order: 2;              /* TWEENER - IE 10 */
    -webkit-order: 2;               /* NEW - Chrome */
    order: 2;                       /* NEW, Spec - Opera 12.1, Firefox 20+ */
    width:100%;
}
.searchoption {
    -webkit-box-ordinal-group: 3;  
    -moz-box-ordinal-group: 3;     
    -ms-flex-order: 3;     
    -webkit-order: 3;  
    order: 3;
    white-space:nowrap;
}






.flex{
    display: flex;
    padding: 10px;
}
.buttons{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 2px;
    visibility:hidden;
    position:absolute;
    width: 500px;
    left: calc(50% - 250px);
    background-color: rgb(223, 223, 223);
}
.container {
    position: relative;
    text-align: center;
    color: black;
}
.navtext{
    font-size: 11px;
    color: black;
}
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    color: black;
}




/* I found this code at https://meyr0s3.neocities.org/Aboutme */
/* If you would like me to not have it, let me know */
#vinyl-gallery * {
    all: unset;
  }
 
  #vinyl-gallery {
    /* all: initial!important; */
    width: 100%!important;
    height: 500px!important;
    margin: 30px 0!important;
    display: flex!important;
    flex-direction: row!important;
    position: relative!important;
    margin-right: 100px!important;
    
    overflow-x: scroll;
    white-space: nowrap;
  }
 
  #vinyl-gallery .vinyl {
    all:unset!important;
    perspective: 500px !important;
    width: 50px!important;
    top:50px;
    padding: 30px;
    transition: width 0.5s!important;
  }
 
  #vinyl-gallery .vinyl:hover {
    width: 300px!important;
  }
 
  #vinyl-gallery iframe {
    all:unset!important;
    transition: transform 0.5s, width 0.5s, height 0.5s, margin-top 0.5s!important;
    width: 180px!important;
    height: 180px!important;
    transform: rotateX(0deg) rotateY(25deg)!important;
    transform-style: preserve-3d!important;
    border-radius: 4px!important;
    border: 2px solid rgba(0, 0, 0, 0.1)!important;
    object-fit: cover!important;
  }
 
  #vinyl-gallery .vinyl:hover iframe {
    transform: rotateX(0deg) rotateY(0deg) translate(0px,200px)      !important;
    width: 188px!important;
    height: 188px!important;
    margin-top: -2px!important;
  }
 
  #vinyl-gallery .title {
    color: #000000;
    display: block;
    visibility: hidden;
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    padding-left: 6px;
  }
 
  #vinyl-gallery .vinyl:nth-child(n):hover + .title {
    visibility: visible;
  }