/* BODY AND SECTIONS */
/* ----------------------------------------------------- */
/* All body and section styling available here (except for the fonts, which are declared in the defaults+fonts.css). Some properties have already been declared */

body {
  padding: 40px 10%;
  background-color: rgb(235, 235, 235) ;  
}

section {
  padding: 20px;
  margin-bottom: 20px;
  background-color: white;
}

section > h2 {
text-align: center;
line-height: 1;
border-bottom: 1px solid black;
padding-bottom: 8px;
}

section > em {
display: block;
margin: 8px 0;
text-align: center;
}

section > div {padding: 10px;}


#s6 > div {background-color: #B298DC;}
#s7 > div {background-color: #BDC696;}



/* SECTION 1 */
/* ----------------------------------------------------- */

#s1 > div > p {
  margin: 0;
}

#s1 > div {
  background-color: rgb(229, 131, 26);
  column-count: 1;
}

@media (min-width: 1134px) {
  #s1 > div {
    background-color: lightgoldenrodyellow;
    column-count: 3;
  }
}

@media (max-width: 1133px) and (min-width: 667px) {
  #s1 > div {
    background-color: rgb(243, 201, 93);
    column-count: 2;
  }
}

/* SECTION 2 */
/* ----------------------------------------------------- */


#s2 > div {
  background-color: #CDEAC0;
  height: 70vh;
}

#s2 > div > div:nth-of-type(1) {
  height: 40px;
  margin: 10px;
  padding: 10px;
  border: 1px solid black;
  background-color: #c9b4ea;
}

#s2 > div > div:nth-of-type(2) {
  height: calc(70vh - 90px);
  margin: 10px;
  padding: 10px;
  border: 1px solid black;
  background-color: #c9b4ea;
}

@media (max-width: 1134px) {
  #s2 > div {
    background-color: #a0e083;
  }
  #s2 > div > div:nth-of-type(1) {
    height: auto;
  }
  #s2 > div > div:nth-of-type(2) {
    height: calc(70vh - 110px);
  }
}

@media (max-width: 667px) {
  #s2 > div {
    background-color: #84ea55 ;
  }
  #s2 > div > div:nth-of-type(2) {
    height: calc(70vh - 130px);
  }
}

/* SECTION 3 */
/* ----------------------------------------------------- */

#s3 > div {
  background-color: #FF5964;
  column-count: 2;
  column-gap: 20px;
  row-gap: 20px;
}

#s3 > div > div {
  width: 100%;
  height: 175px;
  padding: 6px;
  margin-bottom: 10px;
  background-color: rgb(247, 243, 243);
}

@media (min-width: 1134px){
  #s3 > div {
    display: flex;
    background-color: #FF5964;
  }
  #s3 > div > div {
    padding: 6px;
    background-color: rgb(247, 243, 243);
    margin: 10px;
    width: 25%;
    height: auto;
    background-color: white;
  }
}

@media (max-width: 667px){
  #s3 > div {
    background-color: #FF5964;
    column-count: 1;
    column-gap: 20px;
  }
  
  #s3 > div > div {
    width: 100%;
    height: auto;
    padding: 6px;
    margin-bottom: 10px;
    background-color: rgb(247, 243, 243);
  }
}

/* SECTION 4 */
/* ----------------------------------------------------- */

#s4 > div {
  background-color: #B8F3FF;
}

#s4 > div > div {
  width: 100%;
  background-color: white;
  margin-bottom: 10px;
  padding: 5px;
}

@media (min-width: 1134px){
  #s4 > div {
    display: flex;
    flex-direction: row;
    background-color: #B8F3FF;
  }
  
  #s4 > div > div {
    background-color: white;
    margin: 10px;
    padding: 10px;
  }
}

/* SECTION 5 */
/* ----------------------------------------------------- */

#s5 > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#s5 > div > span {
  background-color: #B298DC;
  padding: 10px;
  margin: 10px;
}

#s5 > button {
  padding: 10px;
  background-color: #BDC696;
  font-family: 'FT88', monospace;
  margin: 10px;
  display: none;
}

#box {
 background-color: #B8F3FF;
 padding: 10px;
 /* display: none; */
 visibility: hidden;
 width: 120px;
}

#box > ul {
  margin: 0;
  padding: 10px;
} 
