/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
:root {
    --orangeyellow: linear-gradient(
        to left,
        rgb(240, 129, 63),
        rgba(240, 196, 25, 1)
    );
    --yellowgreen: linear-gradient(
        to left,
        rgba(240, 196, 25, 1),
        rgba(78, 186, 111, 1)
    );
    --greenblue: linear-gradient(
        to left,
        rgba(78, 186, 111, 1),
        rgba(45, 149, 191, 1)
    );
    --bluepurple: linear-gradient(
        to left,
        rgba(45, 149, 191, 1),
        rgba(149, 91, 165, 1)
    );
    --purplepink: linear-gradient(
        to left,
        rgba(149, 91, 165, 1),
        rgb(238, 45, 160)
    );
    --pinkorange: linear-gradient(
        to left,
        rgb(238, 45, 160),
        rgb(240, 129, 63)
    );
    --rainbow: linear-gradient(
        -45deg,
        rgb(240, 63, 125),
        rgb(240, 129, 63),
        rgba(240, 196, 25, 1),
        rgb(142, 233, 30),
        rgba(78, 186, 111, 1),
        rgba(45, 149, 191, 1),
        rgba(149, 91, 165, 1),
        rgb(238, 45, 160)
    );
    --rainbow3: linear-gradient(
        -90deg,
        rgb(240, 63, 125),
        rgb(240, 129, 63),
        rgba(240, 196, 25, 1),
        rgba(78, 186, 111, 1),
        rgba(45, 149, 191, 1),
        rgba(149, 91, 165, 1)
    );
    --rainbow4: linear-gradient(
        -90deg,
        #fa2487,
        #ff6614,
        #ff8a00,
        #ffc500,
        #f3e100,
        #c8ed04,
        #a1e50a,
        #67de29,
        #18d862,
        #0cd49e,
        #00cfbf,
        #0fc5cc,
        #0ebdd4,
        #19ade3,
        #20a0f0,
        #4f89f7,
        #5d70ff,
        #715fff,
        #6559ff,
        #734bfa,
        #7825ff,
        #852cff,
        #9226ff,
        #a20eff,
        #a703ff,
        #b100f3,
        #c113e1,
        #cc00de,
        #e300c9,
        #e300c1,
        #f000b0,
        #fa2487
    );
    --rainbow2: linear-gradient(-90deg, #b824fa, #4f89f7);
}
.screen {
    height: 100vh;
  background: linear-gradient(0deg, #DB2196 0%, #9824F2 33%, #3a86ff 60%, #06ffa5 100%);
	background-attachment: fixed;
    color: white;
    white-space: nowrap;
    display: flex;
    overflow: none;
    justify-content: center;
    padding: 0px;
}
.container-fluid {
    aspect-ratio: 19/34;
    max-height: 100vh;
    border: solid white 2px;
    background: var(--rainbow3);
    border-radius: 12px;
    overflow: hidden;
    white-space: nowrap;
    object-fit: contain;
    display: block;
    box-sizing: border-box;
    margin: 1px;
    padding: 7px;
}
.prev,
.next {
    cursor: pointer;
    background: rgba(255, 255, 255, 0);
    width: 10vh;
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    z-index: 999;
    grid-column: 1;
    grid-row: 1;
    justify-self: left;
    justify-content: center;
    margin: 3px;
    max-height: 100%;
    border: none;
    box-shadow: none;
    align-content: center;
    display: flex;
}
.next {
    justify-self: right;
}

.up,
.down {
    cursor: pointer;
    height: 7vh;
    background: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 0.5);
    transition: 0.6s ease;
    z-index: 998;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    max-width: 100%;
    border: none;
    box-shadow: none;
    justify-content: center;
    display: flex;
    margin: 3px;
    
}
.down {
    align-self: end;
}
.up img {
  margin: 12px 10px 10px 10px;
  max-height: 22%;
  object-fit: contain;
}
.down img {
  margin: 15px 10px 10px 10px;
  max-height: 22%;
  object-fit: contain;
}.prev img {
  margin: 10px;
  max-width: 15%;
  object-fit: contain;
}.next img {
  margin: 10px;
  max-width: 15%;
  object-fit: contain;
  justify-self: right;
}

.image-container {
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 11/17;
    overflow: hidden;
    white-space: nowrap;
    justify-content: center;
    border: solid white 3px;
    background: white;
    border-radius: 5px;
    display: grid;
    margin: 0px;
    margin-top: 0;
    margin-bottom: 0;
    box-sizing: border-box;
}
.backgroundLayer {
    max-height: 100%;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    justify-content: center;
    object-fit: cover;
    margin: auto;
    box-sizing: border-box;
    grid-column: 1;
    grid-row: 1;
}
.imageLayer,
.optional {
    max-height: 95%;
    max-width: 95%;
    overflow: hidden;
    white-space: nowrap;
    justify-content: center;
    object-fit: contain;
    margin: auto;
    grid-column: 1;
    grid-row: 1;
    z-index: 4;
}
.optional {
    display: none;
}

.menu {
  max-width: 100%;
    min-height:10vh;
    max-height: 12vh;
    
     display: grid;
}
.menu_container {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 0px;
    object-fit: contain;
}
/* On hover, add a grey background color */
.prev:hover,
.next:hover,
.up:hover,
.down:hover {
    background: rgba(255, 255, 255, 0.4);
    color: black;
}
.button1, .button2 {
    display: flex;
    flex-direction: row;
  align-items: center;
    font-size: 12px !important;
        color: white !important;
    text-shadow: 1px 1px purple !important;
    max-width: 25%;
    aspect-ratio: 11/4;
    margin: auto;
    justify-content: center;
    align-content: center;
    object-fit: scale-down;
    float: left;
        border: none;
       background: rgba(255, 255, 255, 0) !important;
        box-shadow: none;
}
button:active {
    border: solid 1px;
    border-radius: 0px;
}
.button1:hover,
.button2:hover {
    box-shadow: none;
}
.tab {
    display: flex;
    justify-content: space-between;
    width: 100%;
    aspect-ratio: 12/1;
    background-color: var(--rainbow3);
    overflow: hidden;
    
}
.tabcontent {
    display: none;
    padding: 3px 3px;
    border: none;
    border-top: none;

}
.tab button.active {
            border-bottom: none;
            border-left: 2px solid white;
			border-right: 2px solid white;
}
/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}
.tablink {
    background: rgba(255, 255, 255, 0) !important;
    display: flex;
    height: 100%;max-width:100%;
    margin: auto;
    justify-content: center;
    align-content: center;
    object-fit: contain;
  border-radius: 0px;
    padding: 4px;
    border: none;
    box-shadow: none;
   border-bottom: 3px solid white;
   border-bottom-right-radius: 0px;
}
.tablink img{
  display:flex;
  max-width: 100%;
  object-fit: contain;
  padding: 3px;
  b
  
}
