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

@import url('https://fonts.cdnfonts.com/css/open-dyslexic');

:root {
  --background-color: #e0d1ee;
  --content-background-color: #ffffff;
  --background-image: url('images/bparty2.gif');
  
  --text-color: #000000;
  --link-color: #3026e8;
  --link-color-hover: #7780ec;
  
  --font: 'Open-Dyslexic', sans-serif;
  --heading-font: 'Open-Dyslexic', sans-serif;
  --font-size: 14px;
  
  --margin: 10px;
  --padding: 20px;
  --border: 2px dotted #000000;
  --round-borders: 20px;
}

html, body {
  display: flex;
  align-items: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0 auto;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  
  background: var(--background-color);
  background-image: var(--background-image);
  
  overflow-x: hidden;
  
}

.layout {
  width: 1200px;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header" auto "main" auto "footer" auto / auto;
}

header {
  grid-area: header;
  font-size: 1.2em;
  
  margin: auto;
  text-align: center;
  padding: var(--padding);
}

.header-content {
  
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-image img {
  width: 100%;
  height: auto;
  width: 33%;
  margin: auto;
}

main {
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  
  
  margin: auto;
}

.imagesRow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  
}

.imagesColumn {
  flex: 50%;
  padding: 0 4px;
}

.imagesColumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 25%;
}

.content {
  margin: auto;
}

.content p {
  padding: 0 100px;
}



.footer {
  grid-area: footer;
  padding: var(--padding);
  margin: auto;
  text-align: center;
}

.gridContainer {
  display: flex;
}

.gridItem {
  /* border: 2px dotted #000000; */
  margin: auto;
  padding: 0px;
}
  
  
#gridItem1 {
	width: 46%;
	/* margin: auto; */
	float: left;
	overflow: hidden;
	
}

#gridItem2 {
  width: 23%;
  height: 23%;

}

#gridItem2 img {
  width: 100%;
  height: 100%;
}

.imagesRow img:hover {
  transform: scale(1.1) rotate(0deg);
}

#musicPlayer {
    height: 70%;
    width: 98%;
    border-style: solid;
    border-width: 5px;
    border-color: #333333;
    border-radius: 3px;
    position: absolute;
}

#interface {
    position: relative;
    width: 100%;
    height: 64%;
    background-size: 100% auto;
}

#trackList {
    width: 100%;
    height: 25%;
    background-color: #7D138D;
    overflow-y: scroll;
    overflow-x: hidden;
}





/*Test the gif collage */








