html{
    min-height:100%;
    position:relative;
}
@font-face {
    font-family: "MSConsolas";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/lexenddeca/v21/K2F1fZFYk-dHSE0UPPuwQ5qnJy8.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
    height: 100%;
    width: 100%;
    position: absolute;
    margin: 0;
    
    background-color: rgb(255, 255, 255);
    background-size: cover;
}
.page-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
}
.page-flex-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: max-content;
    width: min-content;
    margin-right: 5px;
    margin-left: 5px;
}
.window {
    background-color: rgb(23, 23, 31);
    padding: 5px;
    border-radius: 6px;
    width: 550px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.window-topbar {
    text-align: right;
    color: white;
    font-family: "MSConsolas";
    font-weight: 500;
    font-style: normal;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 5px;
}
.window-text {
    text-align: left;
    color: white;
    font-family: "MSConsolas";
    font-weight: 400;
    font-style: normal;
}
.window-title {
    font-style: italic;
}
.cat-pic {
    aspect-ratio: 1;
    object-fit: cover;
}
.window-innercontent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.rounded {
    border-radius: 4px;
}
.right-bottom-buttons {
    position: fixed;
    bottom: 0;
    right: 0;
}
