/*Section Styling*/
header{
  padding: min(2em, 8%);
  margin-top: 10px;
  border:5px double DarkSeaGreen;
  border-radius: 15px;
  background-color: SeaGreen;
}

body{
  background-image: url("/media/backgrounds/flowersbg.gif");
  font-family: Serif;
}

#nav ul{
  list-style-type: none;
  display: flex;
  justify-content: space-evenly;
  padding: min(0.5em, 8%);
  background-color: SeaGreen;
  border:5px double DarkSeaGreen;
  border-radius: 15px;
  margin: 0;
  margin-top: 10px;
}

#nav ul li a{
  display: block;
  padding: 14px 16px;
  background-color: SeaGreen;
  border-radius: 15px;
  border:5px double DarkSeaGreen;
}

#nav ul li a:hover{
  background-color: DarkSeaGreen;
}

.container{
  max-width: clamp(1000px, 1400px, 1800px);
  margin: 0 auto;
  text-align:center;
  justify-content: center;
}

.marqueeContainer{
  width: 1390px;
  background-color: SeaGreen;
  border-color: DarkSeaGreen;
  border:5px double DarkSeaGreen;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 5px;
  margin-bottom: 5px;
}

.blinkie{
  flex: 0 0 auto;
  width: 150px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}

.marquee{
  display: flex;
  width: max-content;
  animation: scroll 90s linear infinite;
}

@keyframes scroll{
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marqueeContainer2{
  width: 1390px;
  background-color: SeaGreen;
  border-color: DarkSeaGreen;
  border:5px double DarkSeaGreen;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 5px;
  margin-bottom: 5px;
  
}

.stamp{
  flex: 0 0 auto;
  width: 99px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}

.marquee2{
  display: flex;
  width: max-content;
  animation: scroll 45s linear infinite;
}

@keyframes scroll{
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.boxes{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  height: 800px;
}

@media screen and (max-width: 800px) {
  .boxes {
    max-width: 750px;
  }
}

.leftSidebar{
  background-color: SeaGreen;
  width: 15vw;
  order: 1;
  border-radius: 15px;
  border:5px double DarkSeaGreen;
  padding: min(1.5em, 8%);
}

.howamiBox{
  height: 225px;
  width: 14vw;
  background-color: SeaGreen;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 15px;
  border:5px double DarkSeaGreen;
}

.plansBox{
  height: 475px;
  width: 14vw;
  background-color: SeaGreen;
  display: inline-block;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  border-radius: 15px;
  border:5px double DarkSeaGreen;
}

.mywebsiteBox{
  height: 250px;
  width: 45vw;
  background-color: SeaGreen;
  display: inline-block;
  padding: 2px;
  margin-bottom: 20px;
  border-radius: 15px;
  border:5px double DarkSeaGreen;
}

.aboutmeBox{
  height: 450px;
  width: 22vw;
  display: inline-block;
  background-color: SeaGreen;
  padding: 2px;
  border-radius: 15px;
  border:5px double DarkSeaGreen;
}

.artBox{
  height: 450px;
  width: 22vw;
  display: inline-block;
  background-color: SeaGreen;
  padding: 2px;
  border-radius: 15px;
  border:5px double DarkSeaGreen;
}

.rightSidebar{
  background-color: SeaGreen;
  width: 15vw;
  padding: min(1.5em, 8%);
  order: 3;
  border-radius: 15px;
  border:5px double DarkSeaGreen;
}

main{
  flex: 1;
  order: 2;
  background-color: SeaGreen;
  width: 60vw;
  border-radius: 15px;
  padding: min(1.5em, 8%);
  border:5px double DarkSeaGreen;
}

.column{
  display: inline-flex;
}

footer{
  background-color: SeaGreen;
  border-radius: 15px;
  border:5px double DarkSeaGreen;
}

.boxes ul li{
  padding-bottom: 15px;
  padding-right: 10px;
}

.customLine{
  border: none;
  height: 1px;
  background-color: Black;
}

.imageContainer{
  position: relative;
  margin-left: 87.5px;
  margin-right: 87.5px;
}

.imageContainer img{
  position: absolute;
  top: 0;
  left: 0;
}

.topLayer{
  z-index: 2;
}

.bottomLayer{
  z-index: 1;
}

/*Text Styling*/

h1{
  font-size: clamp(1.8rem, calc(1.8vw + 0.2rem), 5rem);
}

h3{
  
}

p{
  font-size: clamp(0.8rem, calc(1vw + 0.2rem), 2rem);
}

a{
  color: Black;
}

a:hover{
  color: Sienna;
}