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

html
{
  height: 100%;
  min-height: 100%;
  
}
   

body {
  background-color: black;
  color: white;
  font-family: Verdana;
  height: 98%;
  margin-left: 10rem;
  margin-right: 10rem;
 
}

@font-face {
    font-family: 'Pixelify Sans';
    src: url('fonts/PixelifySans-Regular.woff2') format('woff2'),
        url('fonts/PixelifySans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


img {
    max-width: 100%;
    height: auto;
}

p{
    font-family: 'Pixelify Sans';
    font-weight: normal;
    font-style: normal;
}

h2{
    font-family: 'Pixelify Sans';
    font-weight: normal;
    font-style: normal;
}

h3 {
    font-family: 'Pixelify Sans';
    font-weight: normal;
    font-style: normal;
}


.parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
    height: 100%;

}
    
.header {
    grid-column: span 3 / span 3;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #FFFFFF;
    border-radius: 12px;
    padding: 1rem;
}

.main {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 2;
    grid-row-start: 2;
    
    border: 5px solid #FFFFFF;
    border-radius: 12px;

    padding: 1rem;
    
    overflow: scroll;
}

.footer {
    grid-column: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 5;
    
    gap: 1.5rem;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    overflow: scroll;
    
    border: 5px solid #FFFFFF;
    border-radius: 12px;
}

.menu {
    grid-row: span 5 / span 4;
    grid-column-start: 1;
    grid-row-start: 2;
    
    border: 5px solid #FFFFFF;
    border-radius: 12px;

    overflow: scroll;

    padding: 1rem;
}

.buttonContainer
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
    gap: 1em;
    
}


#buttonImg:hover
{
  transform: scale(1.1);
}

.imgContainer
{
    display: flex;
   
    overflow: scroll;
    gap: 1em;  
}


button
{
  border: 2px solid #FFFFFF;
  border-radius: 4px; 
  background-color: black;
  color: white;
}

@media only screen and (max-width: 880px) 
{
  body
  {
      margin-left: 2px;
      margin-right: 2px;
  }
}

@media only screen and (min-width: 1200px) 
{
  body
  {
      margin-left: 15rem;
      margin-right: 15rem;
  }
}

        