* {
    font-family: "Sour Gummy";
    font-optical-sizing: auto;
    font-weight: 300;
    scrollbar-color: white rgba(0, 0, 0, 0.4);
    cursor: default;
}

:root {
    --blackseethru: rgba(0, 0, 0, 0.750);
}

::selection {
    background-color: khaki;
    color: black;
}

h1,
h5,
h3,
ul {
    color: white;
}

h2,
h4 {
    color: white;
    font-weight: bold;
}

a {
    cursor: pointer;
    color: coral;
}

p,
em {
    color: white;
}

b {
    color: white;
    font-weight: bold;
}

img {
    user-select: none;
    -webkit-user-select: none;
}

body {
    margin: 10px auto auto auto;
    background-image: url(https://yaskeepants.com/backgrounds/bridge-bg.gif);
    background-color: var(--blackseethru);
    background-position: top;
    background-size: contain;
    position: relative;
    display: block;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-repeat: repeat;
    overflow-x: hidden;
}

main {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}


.collapsible {
    cursor: pointer;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.collapsible * {
    cursor: pointer;
}

.collapsible
h1:hover {
    text-decoration: underline;
}

.collapsible h1 {
    background-color: var(--blackseethru);
    user-select: none;
    border-radius: 20px;
    margin: 0px 0px 15px 0px;
    padding: 10px;
    width: 40%;
}

.content {
    display: none;
}



#accessibility {
    position: fixed;
    display: flex;
    background-color: black;
    padding: auto;
    float: left;
    height: 150px;
    width: 100px;
}

.buttong {
    height: 31px;
    width: 88px;
    margin-bottom: 5px;
}

.downloadables {
    height: 120px;
    margin: 10px;
    cursor: pointer;
}


#essaypage {
    height: 1000px;
    width: 100%;
    border: none;
    box-shadow: 5px 5px 40px black;
}

.pgbuttons {
    display: flex;
    width: 100%;
    user-select: none;
}

.pgselect {
    background-image: url(https://yaskeepants.com/backgrounds/wood-texture.png);
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.pgselect button {
    border: none;
    background-color: var(--blackseethru);
    cursor: pointer;
    color: white;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 20px;
}

.pgselect h1 {
    color: white;
    font-weight: 600;
    text-shadow: 4px 4px 8px black;
}

#previouspg::before {
    cursor: pointer;
    content: url(https://yaskeepants.com/NAV/arrow-back.gif);
}

#previouspg {
    background-color: rgba(0, 0, 0, 0);
    margin: 0px 20px 0px 0px;
}

#nextpg::before {
    cursor: pointer;
    content: url(https://yaskeepants.com/NAV/arrow-next.gif);
}

#nextpg {
    background-color: rgba(0, 0, 0, 0);
    margin: 0px 20px 0px 0px;
}

.stickynote {
    position: fixed;
    background-image: url(https://yaskeepants.com/stickynote.png);
    display: flex;
    align-items:center;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    background-size: cover;
    z-index: 5;
    opacity: 30%;
    height: 80px;
    width: 100px;
    padding: 70px 40px 50px 40px;
    transition: 0.4s;
    top: 0px;
}

.stickynote:hover {
    opacity: 100%;
    transition: 0.2s;
}

.stickynote p,
.stickynote a,
.stickynote h3,
.stickynote h4 {
    color: black;
    z-index: 5;
    text-align: center;
    width: 100%;
}