* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Rubik', sans-serif;
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
}

/* Sidebar styles */


[Class="hover1"] {
  background-color: #dfdfdf;
}

img {
  display: block;
  max-inline-size: 100%;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.bold {
  font-weight: bolder;
  font-size: 16px;
}

.content-box span {
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
}

.main-section-2 .text {
  color: white;
}

.user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.user-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

/* Nav list */
ul {
  list-style: none;
}

ul li {
  margin-bottom: 10px;
}

ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  padding: 10px;
  border-radius: 8px;
}

ul li a:hover {
  background-color: #eee;
}

.logo {
  cursor: pointer;
}
 
/* Main Content Area */
.main-container {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  transition: margin-left 0.3s ease, width 0.3s ease;
}

.christmas-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
}
    
.christmas-container-div1 {
    width: 1920px;
    height: 600px;
} 

.christmas-container-div3 {
    grid-row-start: 2;
}

.christmas-container-div4 {
    grid-row-start: 2;
}

.christmas-container-div5 {
    grid-column: span 2 / span 2;
}

.christmas-container-div6 {
    grid-row-start: 4;
}

.christmas-container-div7 {
    grid-row-start: 4;
}

.main-section {
  background-color: black;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}

.secondary-section {
  background-color: #04AA6D;
  grid-template-columns: 1fr;
  height: 100vh;
}

.main-section-1 {
  background-color: #04AA6D;
}

.main-section-2 {
  overflow: hidden;
  margin: 40px;
  background-color: black;
  font-family: "Rubik", serif;
}

/* Boxes inside main */
.box {
  flex: 1 1 calc(33.333% - 20px);
  border: 0.1px solid grey;
}

/* Image + hover effect */
.item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.item-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #FFFEF4;
}

.image-container > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease-in;
}

.image-container .title {
  position: absolute;
  inset: 0;
  font-size: 2rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: opacity 200ms ease-in-out;
  font-family: "Rubik", serif;
  font-weight: bolder;
  text-align: center;
  font-size: 40px;
  opacity: 0;
}

.image-container:hover .title {
  opacity: 1;
}

.image-container:hover img {
  transform: scale(1.1);
  filter: blur(5px);
}

.box1 {
  flex: 1 1 calc(60% - 20px);
  border: 0.1px solid grey;
  background-color: #fffef4;
}

.box2 {
  flex: 1 1 calc(30% - 20px);
  border: 0.1px solid grey;
  background-color: black;
  padding: 5px;
}

[class="INDIEXHIBITMAG"] {
  height: 100%;
  width: 100%;
  border-radius: 1px;
  border-color: aquamarine;
}

/* nEW STUFF */

.topnav h2 {
  float: left;
  display: block;
  font-family: "Anton SC", sans-serif;
  letter-spacing: 0.5px;
  font-style: normal;
  font-size: 30px;
  padding: 14px 16px;
  color: black;
}

.topnav {
  overflow: hidden;
}

.topnav a {
  float: right;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;

}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: black;
  color: white;
  border-color: white;
}

.topnav .icon {
  display: none;
}

.themorrasred {
  color: #c83d2d;
}

@media screen and (max-width: 1300px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    margin-top: 70px;
  }

  .image-container:hover img {
    transform: none;
    filter: none;
  }

  .image-container .title {
    opacity: 1;
  }

  .image-container {
    cursor: default;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .main-container {
    display: grid;
    grid-template-columns: 1fr;
  }
  
  .contact {
    margin-top: 70px;
  }

  .image-container:hover img {
    transform: none;
    filter: none;
  }

  .image-container .title {
    opacity: 1;
  }

  .image-container {
    cursor: default;
  }

  .main-section {
    grid-template-columns: 1fr;
  }
}