* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* To scrolling animation */
}

html,
body {
  overflow-x: hidden;
  /* To prevent Horizontal scroll */
  background-color: #669999;
}

body {
  overflow: hidden;
}


/*Links*/
a:link {
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #e6e6e6;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #006666;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: #e6e6e6;
  background-color: transparent;
  text-decoration: underline;
}


.ArtGallery_header {
  top: 0;
  padding: 0px;
  text-align: center;
  font-size: 24px;
  color: #e6e6e6;
  text-shadow: 2px 2px 5px #2a2a2a;
  font-family:'Indie Flower';
  border: none;
  background: none;
}

.ArtGallery_header h1{
  font-size: 64px;
  font-weight: 600;
}

.DreamArt_header h1{
  top: 0;
  padding: 10px;
  text-align: center;
  font-size: 70px;
  color: #e6e6e6;
  text-shadow: 2px 2px 5px #2a2a2a;
  font-family:'Indie Flower';
  border: none;
  background: none;
  clear: left;
}


.SunLight_header h1{
  top: 150px;
  padding-top: 100px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 70px;
  color: #e6e6e6;
  text-shadow: 2px 2px 5px #2a2a2a;
  font-family:'Indie Flower';
  border: none;
  background: none;
  clear: left;
}

.Header_container h1 {
  text-align: center;
  font-family: 'Indie Flower';
  font-size: 80px;
  font-weight: 600;
}

.Header_container {
  height: 110px; /*60%*/
  color: #e6e6e6;
  text-shadow: 2px 2px 5px #2a2a2a;
  position: relative;
}

.Back {
  top: 0;
  padding: 0px;
  text-align: center;
  font-size: 50px;
  color: #e6e6e6;
  text-shadow: 2px 2px 5px #2a2a2a;
  font-family:'Indie Flower';
  border: none;
  background: none;
  clear: left;
}

.chevron {
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    -webkit-animation: pulse 2s infinite;
            animation: pulse 2s infinite;
    color: #e6e6e6;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.chevron.bottom:before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.chevron::before {
    border-style: solid;
    border-width: 0.10em 0.10em 0 0;
    content: '';
    display: inline-block;
    height: 0.45em;
    left: 0.15em;
    position: relative;
    top: 0.15em;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 0.45em;
}

.gallery_right {
  margin: 5px;
  margin-bottom: 25px;
  margin-top: 25px;
  border: none;
  background-color: none;
  clear: left;
  float: right;
  padding: 10px 6px;
  width: 33.333%;
}

.gallery_right:hover {
  border: 1px solid #777777;
}

.gallery_left {
  margin: 5px;
  margin-bottom: 25px;
  margin-top: 25px;
  border: none;
  background-color: none;
  clear: right;
  float: left;
  padding: 10px 6px;
  width: 33.333%;
}

#Shaman {
  width:55%;
}

.gallery_left:hover {
  border: 3px solid #777777;
}

.gallery_right:hover {
  border: 3px solid #777777;
}

.gallery_image {
  width: 100%;
  height: auto;
  box-shadow: 5px 10px 5px #2a2a2a;
}

.row_right{
  padding-right: 150px;
  /* padding-left: 0px; */
}

.row_right p {
  font-family: 'Indie Flower';
  font-size: 42px;
  font-weight: 600;
  color: #e6e6e6;
  text-shadow: 2px 2px 5px #2a2a2a;
  text-align: right;
  padding-top: 10px;
}

.row_left{
  padding-left: 150px;
  /* padding-left: 0px; */
}

.row_left p {
  font-family: 'Indie Flower';
  font-size: 42px;
  font-weight: 600;
  color: #e6e6e6;
  text-shadow: 2px 2px 5px #2a2a2a;
  text-align: left;
  padding-top: 10px;
}

/*Responsive Section*/

@media only screen and (max-width: 680px) {
  body {
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .DreamArt_header h1{
    font-size: 58px;
  }
  .ArtGallery_header h1 {font-size: 50px}
  .Header_container h1{font-size: 55px}
  .gallery_right {
    width: 60%;
    text-align: right;
  }
  .gallery_left {
    width: 60%;
    text-align: left;
  }

  #Shaman {
    width: 75%;
  }

  .row_right{
    padding-right: 0px;
  }

  .row_left{
    padding-left: 0px;
  }


  .row_left p {font-size: 32px}
  .row_right p {font-size: 32px}
}

