html {
    margin:0;
    padding:0;
    height: 100%;
}
body {
    background-image: url('sky.jpg');
    background-size: 15% auto;
    background-repeat: repeat;
    background-color: white;
    margin:0;
    padding:0;
    height: 95%;
}

.kitty-font {
  font-family: "Gorditas", serif;
  font-weight: 400;
  font-style: normal;
}

.pixle-font {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}

.italic {
    font-style: italic;
}

.yellow {
    color: rgb(255,247,0);
}

.blue {
    color: rgb(159, 221, 236);
}

.align-center {
    text-align: center;
}
/*================================
    NAVIGATION
================================*/

.navigation-wrapper {
    position: relative;
    background-color: black;
    width: 80%;
    height: 3rem;
    margin-left: 10%;
    overflow: hidden;
}

.navigation-wrapper img {
    position: absolute;

    margin-top: 4px;
    height: 85%;
    top:0;
    left: 0;
    vertical-align: middle;

}

.navigation-wrapper h1 {
    font-size: 2rem;
    padding: 0;
    margin: 0;
    text-align: center;
    color: white;
    margin-top: 0.5rem;


}

.navigation {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    height: 5%;
    padding-right: 1rem;
    gap: 0.5rem;
}

.navi-link {
    position: relative;
    font-size: 100%;
    text-decoration: none;
    color: white;
    border: 3px solid rgb(159, 221, 236);
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    border-bottom: 0px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.1rem;
    white-space: nowrap;
}

.navi-link:hover {
    color: black;
    background-color: rgba(244, 248, 254);
}

.here {
    color: rgb(255, 63, 207);
    background-color: rgba(244, 248, 254);
}

/*================================
    CONTENT
================================*/

.main-container-wrapper {
    background-color: rgba(0, 0, 0, 0.899);
    width: 80%;
    margin-left: 10%;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex: 1;
    border-top: 3px solid rgb(159, 221, 236);

}

.main-container-wrapper h1{
    margin: 0;
}

.main-container {
    position: relative;
    overflow-y: scroll;
    padding: 2%;
    width: 100%;
}

.main-container p {
    color: white;
    font-size: 1.2rem;
    line-height: 2;
}

.content {
    margin-left: 10%;
    width: 80%;
}

.content img {
    max-width: 80%;
}

.seperator {
    border-top: 2px solid rgb(255,247,0);
}

/*================================
    LINK
================================*/

.tem-link {
    text-decoration: none;
    color: white;
    margin: 0;
}


.hooman-soul{
    height: 1.2rem;
    margin: 0;
    opacity: 0;
}

.tem-link:hover .hooman-soul{
    opacity: 1;
}

.tem-shop {
    background-color: black;
    border: 3px solid white;
    padding: 1rem;
}

/*
.tem-link::before {
  display: inline-block;
  width: 1.2em;
  content: ' '; 
  opacity: 0;
}

.tem-link:hover::before {
    content: '*';
    opacity: 1;
}
*/