@font-face {
    font-family: "W95";
    src: url("./../assets/W95font.otf") format("truetype")
}

html,
body {
    height: 100%;
}

.main-container {
    flex: 1;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    grid-template-areas:
        "head head"
        "widget content";

    margin-bottom: 4rem;
}

.widget {
    grid-area: widget;
}

.widget-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon {
    grid-area: addon;
}

.content {
    grid-area: content;
}

.content-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.window {
    background-color: #c3c3c3;
    border: #fdffff;
    border-style: groove;
    border-width: 5px;
    box-shadow: 3px 3px 1px black;
}

.window-header {
    background-color: #000000;
    padding: 0.4rem;
    display: flex;
    justify-content: space-between;
}

.window-header-close {
    text-align: right;
    background-color: #c3c3c3;
    border: #fdffff;
    border-style: groove;
}

.window-header-close:hover {
    background-color: #fdffff;
    cursor: pointer
}

.window-header-name {
    color: #fdffff;
    align-content: center;
}

.window-header-name {
    font-family: "W95";
}

.window-content {
    padding: 1rem;
}

.head {
    margin-left: auto;
    margin-right: auto;
}

.header-content {
    align-content: center;
}

.hearder-info {
    display: flex;
    align-items: center;
    border-style: groove;
    padding: 1rem;
}

body {
    background-color: #008080;
    display: flex;
    flex-direction: column;
}

cool-cat {
    width: 100%;
}

.file-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.file {
    display: flex;
    flex-direction: column;
    align-items: center;

    flex: 1 0 100px;

    margin-inline-start: 1rem;
    margin-inline-end: 1rem;
}

.file-icon {
    width: 50px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.file-name {
    text-align: center;
}

.file-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badges-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    margin-inline-start: 1rem;
    margin-inline-end: 1rem;
}

.badges-list img {
    object-fit: cover;
    display: block;
}

.badge {
    width: 100%;
    max-width: 18vh;
    flex-grow: 4;
    overflow: hidden;
}

.start-menu {
    padding-top: 1rem;
}

.start-menu-window {
    display: flex;

    height: 40px;

    background-color: #c3c3c3;
    box-shadow: 3px 3px 1px #000000;

    border-top: #fdffff;
    border-top-style: groove;

    padding: 2px;
}

.start-menu-start-button {
    background-color: #c3c3c3;
    color: black;
    border: #fdffff;
}

.start-menu-collapsed-app {
    background-color: #c3c3c3;
    color: black;
    border: #fdffff;
}

.start-menu-collapsed-app-button {
    background-color: #e7e7e7;
    border: #fdffff;
    border-style: groove;
    border-width: 2px;

    font-size: 24px;
    font-family: "W95";
    text-decoration: none;

    box-shadow: 2px 2px 1px black;
}

.start-menu-collapsed-app-button:hover {
    background-color: #fdffff;
    cursor: pointer
}

.start-button {
    background-color: #e7e7e7;
    border: #fdffff;
    border-style: groove;
    border-width: 2px;

    font-size: 24px;
    font-family: "W95";
    text-decoration: none;

    box-shadow: 2px 2px 1px black;
}

.start-button:hover {
    background-color: #fdffff;
    cursor: pointer;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
}

.page-link {
    text-decoration: none;
}
