*{
  box-sizing: border-box;
}
body{
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: Arial;
  font-weight: lighter;
}
  .main .container{
    overflow-x: hidden;
    width: 80%;
    margin: 0 auto;
  }
    .main .container #carouselController{
      display: flex;
      justify-content: center;
      width: 100%;
    }
      .main .container #carouselController .button{
        width: 1rem;
        height: 1rem;
        margin: .5rem;
        border-radius: 50%;
        border: solid 2px #000;
        cursor: pointer;
      }
        .main .container #carouselController .active{
          background-color: #666;
        }
    .main .container .content-carousel{
      display: flex;
    }
      .main .container .content{
        width: 100%;
        padding-left: 0;
        transition-duration: .5s;
        position: relative;
        left: 0%;

        /* ---------- not important stuff ---------- */

        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
      }
        .main .container .content h2{
          text-align: center;
          color: #fff;
          font-size: 300%;
          margin: 1rem 0;
        }
      .main .container .first{
        border: solid 5px ;
        color: white;
      }
    .main .container .second {
        border: solid 5px;
        color: white;
    }
    .main .container .third {
        border: solid 5px;
        color: white;
    }

.main .container .four {
    border: solid 5px;
    color: white;
}

    .main .container .five {
        border: solid 5px;
        color: white;
    }

    .main .container .six {
        border: solid 5px;
        color: white;
    }



.main .container h3 {
    color: #fff;
    margin-top: 2rem;
}
    .main .container p{
      color: #fff;
      margin: 0;
    }
    .main .container a{
      color: #ECC200;
      text-decoration: none;
    }
      .main .container a:hover{
        text-decoration: underline;
      }
