body{
    margin: 0;
    padding: 0;
    font-family: 'Nanum Gothic', sans-serif;
}

h2{
    font-size: 30px;
}

p{
    font-size: 18px;
}

.heroContainer{
    width: auto;
    height: 300px;
    position: relative;
    display: block;
    background-color: #FFC42C;
}

.heroContainerOverlay{
    width: auto;
    height: auto;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(100, 100, 100, 0.20);
}

.heroText{
    width: auto;
    height: auto;
    position: relative;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    color: white;
}

.redButton{
    height: auto;
    width: auto;
    position: relative;
    display: inline-block;
    border: 3px solid #AA151B;
    color: black;
    padding: 12px 22px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 500px;
    transition: 0.5s ease;
}

.redButton:hover{
    background-color: #AA151B;
    color: white;
}

.greyContainer{
    height: auto;
    width: auto;
    position: relative;
    display: block;
    background-color: #C4C4C4;
    padding: 40px;
}

.whiteContainer{
    height: auto;
    width: auto;
    position: relative;
    display: block;
    background-color: white;
    padding: 40px;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  background: #f1f1f1f1;
}

/* Slides */
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
  background: #ddd;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #717171;
}

/* Add an italic font style to all quotes */
q {font-style: italic;}

/* Add a blue color to the author */
.author {color: cornflowerblue;}
}