body{
    padding: 5% 0 5% 0;
    display: flex;
    min-height: 100%;
    border: rgb(246, 255, 0);
    background-color:rgb(246, 255, 0);
 background-image: url('drawing1.png');
 background-repeat: no-repeat;
 align-items:first baseline;
justify-content: space-around;

}
/*
.box{
    height:80px;
    width:80px;
    border: 1px solid rgb(23, 19, 85);
    background-color: rgb(255, 251, 19);
}*/
.boxRight{
   
    display: inline;
height:70%;
    width:70%;
  border: 1px solid rgb(23, 19, 85);
  background-image: linear-gradient(to bottom, rgba(231, 231, 24, 0.362), rgba(66, 28, 135, 0.73));
}
.boxLeft{
      display: inline;
height:20%;
    width:20%;
  border: 1px solid rgb(23, 19, 85);
    background-image: linear-gradient(to bottom, rgba(231, 231, 24, 0.362), rgba(66, 28, 135, 0.73));

}
.artContainer{
    columns: 3;
}
img{ 
    width: 100%;
}
img:hover{border:1px solid white;}

#arrow{
    position:absolute;
    width: 5px;
    height: 5px;
    top:0;
    left:0;
    padding: 0;
    margin: 0;


}
pre{color:white;

background-image: linear-gradient(to bottom, rgba(123, 38, 154, 0.809), black);
padding:0rem;
margin:1rem 2rem 1rem 2rem;}











/* ===== GLOBAL ===== */
body {
  padding: 5% 0;
  display: flex;
  min-height: 100vh;
  background-color: rgb(246, 255, 0);
  background-image: url('drawing1.png');
  background-repeat: no-repeat;
  justify-content: space-around;
}

/* ===== LAYOUT ===== */
.boxLeft {
  display: inline;
  height: 20%;
  width: 20%;
  border: 1px solid rgb(23, 19, 85);
  background-color: rgba(255, 251, 19, 0.382);
}

.boxRight {
  display: inline;
  height: 70%;
  width: 70%;
  border: 1px solid rgb(23, 19, 85);
  background-color: rgba(255, 251, 19, 0.382);
}

/* ===== GALLERY ===== */
.artContainer {
  columns: 3;
  column-gap: 10px;
}

.artContainer img {
  width: 100%;
  margin-bottom: 10px;
  cursor: pointer;
}

.artContainer img:hover {
  border: 1px solid white;
}

/* ===== ARROW ===== */
#arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  padding: 0;
  margin: 0;
}

/* ===== MODAL OVERLAY ===== */
.modal {
  display: none; /* IMPORTANT */
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

/* ===== MODAL BOX ===== */
.modal-content {
  background-color: #fff;
  padding: 20px;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;            /* CENTERED */
  text-align: center;
  border-radius: 8px;
}

/* ===== MODAL IMAGE ===== */
.modal-content img {
  width: auto;             /* OVERRIDE gallery */
  max-width: 100%;
  max-height: 70vh;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

/* ===== MODAL TEXT ===== */
.modal-content {
  background-color: #2c3817ad;
  padding: 10px;
  max-width: 80rem;
  max-height: 130rem;
  color:#fff;

  margin: 3rem auto;   /* pushes it down */
  text-align: center;
  border-radius: 8px;
}


/* ===== MODAL BUTTON ===== */
.modal-content button {
  padding: 5px 15px;
  background-color: #ffea2d;
  font-size: 14px;
  cursor: pointer;
}
































