body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.mainSection
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 40px;
}

.section1, .section2, .section3, .section4, .section5, .section6
{
    width: 100%;
    margin-top: 15px;
}

h1
{
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

li, h2, h3, h4, p, h5 {
  color: #000;
    font-size: 24px;
    margin: 5px;
  background-color: #A6A6A6;
  border-radius: 5px;
    text-transform:uppercase;
}

button {
  font-size: 24px;
  color: white;
  width: 100%;
  padding: 10px 12px;
  background-color: #222222;
  border: none;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
    margin: 15px;
}
button:hover {
  background-color: #006bbb;
}


@media screen and (min-width: 1000px)
{
    
    .section1, .section2, .section3, .section4, .section5, .section6
    {
        width: 40%;
    }
    
}

