/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #fffae5;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, #ffdda7 1px, transparent 1px),
    linear-gradient(to bottom, #ffdda7 1px, transparent 1px);
  color: #a92700;
  font-family: "Dokdo","IBM Plex Mono","Verdana";
  display: flex;
  align-items: center;
  justify-content: center;
}

h1{
  font-family: "Dokdo",system-ui;
  font-size: 96px;
}

h2{
  font-family: "Dokdo", system-ui;
  font-size: 64px;
}

h3{
  font-family: "Dokdo", system-ui;
  font-size: 32px;
}

h4{
  font-family: "IBM Plex Mono", monospace;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
}

h5{font-family: "IBM Plex Mono", monospace;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
}

a:link{
  text-decoration: underline;
  color: inherit;
}

a:visited{
  color: inherit;
}

a:hover{
  text-decoration: underline;
  text-decoration-style: wavy;
}

#p1{
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}

#p2{
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
}

#p3{
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
}

#p4{
  font-family: "Dokdo",system-ui;
  font-size: 96px;
  display: block;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
  animation-delay: 6s;
  animation-fill-mode: both;
}

#p5{
  font-family: "Dokdo",system-ui;
  font-size: 96px;
  display: block;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

#p6{
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}

#p7{
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
}

.footerlist{
  display: inline-block;
  list-style-type: none;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

.footerlist_item{
  float: left;
  margin-right: 32px;
}

.header{
  width: 100%;
  height: 112px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  background: #fffae5;
  border-top: 8px solid #a92700;
  border-bottom: 8px solid #a92700;
  opacity: 80%;
}

.header_side_1{
  width: 1364px;
  height: 112px;
  transform: rotate(90deg) translate(496px, 748px);
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  background: #ccf0ff;
  border-top: 8px solid #a92700;
  border-bottom: 8px solid #a92700;
  opacity: 64%;

}

.header_side_2{
  width: 1364px;
  height: 112px;
  transform: rotate(-90deg) translate(-496px, 748px);
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  background: #ffde38;
  border-top: 8px solid #a92700;
  border-bottom: 8px solid #a92700;
  opacity: 64%;
}

.marquee {
      position: absolute;
			animation-duration: 12s ;
			animation-iteration-count: 568;
			animation-name: marquee-content ;
			animation-timing-function: linear ;
			padding: 4px 16px 4px 16px ;
		}
		.header:hover .marquee{
			animation-play-state: paused ;
		}

@keyframes marquee-content {
			from {
				transform: translateX( 162.5% );
			}
			to {
				transform: translateX( -162.5% );
			}
}

.box{
  display: flex;
  justify-content: center;
}

.artbox{
  display: flex;
  justify-content: center;
}

.artbox img{
  width: 100%;
  height: 711px;
  object-fit: cover;
  object-position: center;
}

.descbox{
  padding: 16px 16px 16px 16px;
  background: #fffae5cc;
  border-top: 40px solid #a92700;
  border-right: 8px solid #a92700;
  border-bottom: 8px solid #a92700;
  border-left: 8px solid #a92700;
  
}

.calloutbox{
  padding: 16px 16px 16px 16px;
  background: #ffde38;
  color: #0536b3;
  border-top: 40px solid #0536b3;
  border-right: 8px solid #0536b3;
  border-bottom: 8px solid#0536b3;
  border-left: 8px solid #0536b3;
  
}

.menubox{
  width: 120px;
  padding: 4px 8px 4px 16px;
  background: black;
  color: #a3ff70;
  border-top: 10px solid #a3ff70;
  border-right: 2px solid #a3ff70;
  border-bottom: 2px solid #a3ff70;
  border-left: 2px solid #a3ff70;
  z-index: 3;
  transform: translate(-632px, 48px);
}

.grid-container{
  display: grid;
  grid-template-columns: 240px 240px 240px 240px 240px;
  grid-template-rows: 240px 240px 240px 240px;
  gap: 16px;
  grid-template-areas:
  "box-1 box-1 box-1 box-1 box-2"
  "box-3 box-4 box-4 box-5 box-5"
  "box-6 box-6 box-7 box-7 box-8"
  "box-9 box-10 box-10 box-11 box-12";
  position: absolute;
  top: 128px;
  height: 100%;
}

.grid-container-about{
  display: grid;
  grid-template-columns: 240px 240px 240px 240px 240px;
  grid-template-rows: 240px 240px;
  gap: 16px;
  grid-template-areas:
  "box-1 box-1 box-2 box-2 box-2"
  "box-1 box-1 box-2 box-2 box-2";
  position: absolute;
  top: 144px;
}

.container-artwork{
  display: grid;
  width: 1264px;
  height: auto;
  gap: 16px;
  position: absolute;
  top: 144px;
}

.fourcolumns{
  filter: drop-shadow(8px 8px 8px #a92700cc) drop-shadow(-2px -2px 2px #00ffdb5c);
}

.threecolumns{
  filter: drop-shadow(8px 8px 8px #a92700cc) drop-shadow(-2px -2px 2px #00ffdb5c);
}
.twocolumns{
  width: 496px;
  height: 240px;
  filter: drop-shadow(8px 8px 8px #a92700cc) drop-shadow(-2px -2px 2px #00ffdb5c);
  transition: transform 0.125s ease-in-out; 
}

.twocolumns:hover{
  transform: rotate(8deg) scale(1.2);
  filter: drop-shadow(2px 2px 2px #a92700cc) drop-shadow(-2px -2px 2px #00ffdb5c);
}

.twocolumns:active{
  transform: rotate(8deg) scale(1.2);
  filter: drop-shadow(2px 2px 2px #a92700cc) drop-shadow(-2px -2px 2px #00ffdb5c);
}

.onecolumn{
  filter: drop-shadow(8px 8px 8px #a92700cc) drop-shadow(-2px -2px 2px #00ffdb5c);
}

.footer{
  height: 200px;
  width: 100vw;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #a92700;
  color: #fffae5!important;
  position: absolute;
  top: 1250px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer_content{
  width: 1658px;
}