
/* This sets up ****** webpage layout */


/* --------------------------------------------- */
/* Display based on screen sizes                 */
/* --------------------------------------------- */

/* Default */
.grid-container {
  display: grid;
  max-width:100%;
  grid-template-areas:
    'header menu menu menu menu menu'
    '. . info1 info1 . .'
    '. info2 info2 info2 info2 .'
    'footer footer footer footer footer footer';
    grid-2023_conferences-rows: 0.25fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 0;
    /* background-color: white; */
    background: var(--main-bodybkgrnd-color);
}


/* Intermediate sizes */
@media only screen and (min-width: 601px) and (max-width: 1050px)   {
.grid-container {
    display: grid;
    max-width:100%;
    grid-template-areas:
    'header menu menu menu'
    '. info1 info1 .'
    'info2 info2 info2 info2'
    'footer footer footer footer';
    grid-gap: 0;
    grid-2023_conferences-columns: 1fr 1fr 1fr 1fr;
    /* background-color: white; */
    background: var(--main-bodybkgrnd-color);
}
}


@media only screen and (min-width: 1051px) and (max-width: 1400px)  {
.grid-container {
  display: grid;
  max-width:100%;
  grid-template-areas:
    'header menu menu menu menu menu'
    '. . info1 info1 . .'
    '. info2 info2 info2 info2 .'
    "footer footer footer footer footer footer";
    grid-gap: 0;
    grid-2023_conferences-columns: 0.5fr 1fr 1fr 1fr 1fr 1fr;
    /* background-color: white; */
    background: var(--main-bodybkgrnd-color);
}
}



/* Phone */
@media only screen and (max-width: 600px) {
.grid-container {
   display: grid;
   max-width:100%;
   grid-template-areas:
    'header'
    'menu'
    'info1'
    'info2'
    'footer';
    grid-gap: 0;
    /* background-color: white;  */
    background: var(--main-bodybkgrnd-color);
    grid-2023_conferences-columns: 1fr;
}
}

/* --------------------------------------- */
/* Info 1                                  */
/* --------------------------------------- */
.info1 {
  grid-area: info1;
  text-align: center;
  padding: 20px;
  margin: var(--main-margin-gap); 
  border: 3px;
  margin: var(--main-margin-gap);
  border-radius: var(--main-grid-border-radius);
  background-color: tan;
}

.info1 img {
    width: 80%;
    max-width: 320px;
}

.info1 iframe {
  width: 100%;
  height: 1000px;
  border: 5px;
  text-align: center;
}


/* --------------------------------------- */
/* Info 2                                  */
/* --------------------------------------- */
.info2 {
  grid-area: info2;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin: var(--main-margin-gap);
  border: 3px;
  border-radius: var(--main-grid-border-radius);
  background: linear-gradient(tan);
}


.info2 img {
    width: 90%;
    max-width: 1050px;
    text-align: center;
    @media only screen and (max-width: 600px) { max-width: 450px; }
    
}

