body {
    padding: 0;
    margin: 0;
    background-image: url('../bg/x.jpg');
}

#hi {
    width:100%;
    height: 100%;
    font-family: var(--main);
    cursor: url("../tiny.cur"), auto;
}

.content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    width: 23%;
    display: flex;
    flex-direction: column;
    gap: .75em;
}

.item {
    position: relative;
}

.item > .header {
    text-align: left;
    border: 1px solid black;
    padding: 5px;
    background: white;
    cursor: url('../link.cur'), auto;
    transition: all .2s ease;
}

.blur {
    filter: blur(3px);
    opacity: .75;
}

.yay {
    padding: 10px 5px !important;
}


.item > .header span {
    float: right;
    font-style: italic;
    color: gray;
}

.item > .inside {
    height: 0;
    width: (100% - 20px);
    background: white;
    border: 1px solid black;
    opacity: 0;
    transition: all .2s ease;
    overflow: auto;
    scrollbar-width: thin;
}

.inside h2:first-of-type {
    margin-top: 0.25em;
}

.inside h2 {
    margin-bottom: .25em;
}

.open {
    height: calc(450px - 20px) !important;
    opacity: 1 !important;
    padding: 10px;
    margin-top: 1em;
}


.sides h2 {
    margin-top: 0;
    margin-bottom: .5em;
}

.sides ol {
    padding-inline-start: 30px;
    margin: 0;
    line-height: 1.5em;
}


.item > .inside2 {
    position: absolute;
    left: -20em;
    top: 2.9em;
    height: 0px;
    width: calc(275px - 20px);
    background: white;
    border: 1px solid black;
    opacity: 0;
    transition: all .2s ease;
    overflow: auto;
    scrollbar-width: thin;
    text-align: left;
    padding: 10px;
}

.item > .inside3 {
    position: absolute;
    right: -20em;
    top: 2.9em;
    height: 0px;
    width: calc(275px - 20px);
    background: white;
    border: 1px solid black;
    opacity: 0;
    transition: all .2s ease;
    text-align: left;
    padding: 10px;
}

.sides ol li ul {
    padding-inline-start: 5px;
    /* list-style-type: "↳"; */
    transition: all .2s ease;
    height: 0px;
    padding-right: 5px;
    overflow: auto;
    scrollbar-width: thin;
    margin-left: -.5em;
    line-height: initial;
  }

.show {
    opacity: 1 !important;
    height: calc(450px - 20px) !important;
}

.show2 {
    height: 200px !important;
}

.homepage:hover {
    text-decoration: none;
}