html {
    height: 100vh;
    text-align: center;
    background-color: #2f3645;
    margin: auto;
    margin: 0px;
    color: white;
    font-family: comfort;
    line-height: 1.5;
    scroll-behavior: smooth;
}

@media not (min-width: 960px) {
    img {
      width: 100%;
      height: auto;
    }
}

nav {
    background-color: #101928;
    margin: 0px;
    width: 100%;
    height: 90px;
    vertical-align: middle;
    text-align: center;
    position:fixed;
    top:0;
}

body {
    margin: 0px;
    margin-top: 90px;
}

footer {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #101928;
}

nav a {
    color: lightblue;
    display: inline-block;
    padding: 10px;
    font-size: 20px;
    text-decoration: none; 
}

.row {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.main {
    width: 75%;
    margin: auto;
    background-color: #52A09B;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.col {
    float: left;
    flex-grow: 1;
    flex-basis: 0;
    padding: 30px;
    padding-left: 120px;
    padding-right: 120px;
}

.color1 {
    background-color: #52A09B;
}

.gum-eating {
    background-image: linear-gradient(to top, rgba(82,160,155,0.5), #52A09B), url("../images/gum_consumption.jpg");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.color2 {
    background-color: orange;
}

.color3 {
    background-color: #ffebc4;
}

.color4 {
    background-color: #2f3645;
}

.countryside {
    /* background-image: url("../images/countryside.jpg"); */
    background-image: linear-gradient(to top, rgba(255,165,1,0.5), orange), url("../images/countryside.jpg");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fadeInAnimation {
    animation: fadeInAnimation;
    animation-duration: 2s;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translate(0%, -25%);
    }
    100% {
        opacity: 1;
        transform: translate(0%, 0%);
    }
}


h1 {
    font-size: 50px;
    font-weight: 900;
}

button {
    font-size: 50px;
    line-height: auto;
    background-color: #52A09B;
    border: none;
    color: white;
    padding: 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: comfort;
}

button:hover {
    color: black;
    background-color: white;
}

@font-face {
    font-family: comfort;
    src: url("../fonts/Comfortaa-Bold.ttf");
}

@font-face {
    font-family: comfort;
    src: url("../fonts/Comfortaa-Bold.ttf");
    font-weight: bold;
  }

.top {
    position: relative;
    z-index: 100;
}

/* The animation code */
@keyframes fadein {
    from {background-color: transparent;}
    to {background-color: black;}
}
  

.fadein {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    animation-name: fadein;
    animation-duration: 47s;
}



blockquote {
    margin: 0;
    padding: 0px;
}
  
blockquote p {
    padding: 15px;
    background: rgba(1.0,1.0,1.0,0.25);
    border-radius: 5px;
}
  
blockquote p::before {
    content: '\201C';
}
  
blockquote p::after {
    content: '\201D';
}
  




* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* 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;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}