#navigation{
    text-align: center;
    background-color: rgb(170, 122, 112);
    font-size: 3vh;
    position: sticky;
    top:0;
    display:block;
    margin-top: 0px;
    isolation: isolate;
}

#navigation::before{
    content:'';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url('imgs/blueStars.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.cool-text{
    padding-left: 10px;
    height: 30%;
    background: linear-gradient(90deg, rgb(235, 79, 186), rgb(203, 186, 78), rgb(235, 79, 186)) -100%/ 200%;
    background-clip: text;
    color: transparent;
    font: 900 clamp(1em, 2vw, 1.2em) exo, sans-serif;
    animation: shimmer 2s linear infinite;
     -webkit-text-stroke: 0.5px rgb(142, 88, 35);  /* Outline width and color */
    }

@keyframes shimmer { to { background-position: 100% } }

.items{
    display: inline-block;
}

.container{
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.words{
    margin-left: 15px;
    margin-top: 10px;
}

.grid-items{
    background-color: rgb(237, 228, 151);
    border: 4px solid rgb(203, 129, 145);
    padding: 16px;
    padding-top: 8px;
    border-radius: 25px;
}

#top-left{
    grid-area: tl;
}

#top-right{
    border: 0px;
    background-color: transparent;
    grid-area: tr;
    display: grid;
}

.right-items{
    background-color: rgb(237, 228, 151);
    border: 4px solid rgb(203, 129, 145);
    border-radius: 25px;
}

#bottom{
    grid-area: bt;
}

/* .grid-container{
    border-radius: 25px;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-rows: auto auto;
    grid-template-areas:
    "ui"
    "lp";
    padding: 10px;
    background-color: rgb(237, 228, 151);
} */


#upper-image{
    grid-area: ui;
}

#upper-image >img{
    width: 100%;
    border-radius: 26px;
}

#lower-para{
    grid-area: lp;
}

#low-right{
    /* background-color: rgb(237, 228, 151); */
    border-radius: 26px;  
    margin-top: 5px;
    padding-bottom: 16px;
}


#parent-scrolly{
    overflow-y: scroll;
    height: 19vh;
    padding: 16px;
    padding-top: 5px;
    background-color: rgb(193, 186, 127);
    scrollbar-color:  rgba(154, 209, 232, 0.668) rgb(169, 163, 113);
}

#parent-scrolly::after{
    content: '*Looks left, then right* heyyyy';
}

#scrolly-boy{
    padding: 16px;
}

#grid{
    justify-self: center;
    padding: 16px;
    border: 4px solid rgb(210, 79, 79);
    display: grid;
    justify-content: center;
    grid-template-columns: 500px 300px;
    grid-template-rows: 500px auto;
    grid-template-areas:
    "tl tr"
    "bt tr";
    column-gap: 10px;
    row-gap: 5px;
    background-image: url('imgs/orangeTileswithStars.jpg');
    border-radius: 26px;
}

/* general styling: */

/* img{
    width: 90%;
    height: 80%;
} */

ul{
    padding: 0px;
    margin-bottom: 10px;
}

li{
    list-style-type: disc;
    display: inline-block;
    padding: 16px;
    font-size: 20px;
    font-weight: 600;
}

h1{
    display: inline-block;
    margin-left: 16px;
    margin-bottom: 7px;
    margin-top: 10px;
    font-weight: 600;
    color: rgb(111, 10, 82);
    background-color: rgba(154, 209, 232, 0.668);
}

a{
    text-decoration: none;
    color:inherit;
}

a:hover{
    border-color: orange;
    color: orange;
    cursor: pointer;
}

html{
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.dropbtn {
    background-color: transparent;
    color: black;
    font-weight: 600;
    padding: 12px;
    font-size: 3vh;
    border: none;
    cursor: pointer;
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(210, 155, 143);
    min-width: 24px;

}

/* Links inside dropdown content */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: small;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown content on hover */
/* .dropdown:hover .dropdown-content {
    display: block;
} */

/* Change background color of dropdown button on hover */
/* .dropbtn:focus  {
    background-color: white;
} */

.dropbtn::after {
    content: ' \25B2';
    font-size: 16px;
}

/* .dropbtn:focus::after{
    content: ' \25BC';
    font-size: 16px;
} */

body{
    font-family: "Work Sans", sans-serif;
    margin: 0px;
    background-image: url('imgs/pinkkk.jpg');
    overflow-x: hidden
}

.show {
    display:block;
}

.show-btn{
    background-color: rgb(210, 155, 143);
}

.show-btn::after {
    content: ' \25BC';
    font-size: 16px;
}