@font-face {
    font-family: Tahoma8Px;
    src: url("assets/fonts/tahoma-8px.otf") format("opentype");
}

:root {
    cursor: url("assets/pointer.png"), auto;
    user-select: none;
}

a,
button {
    cursor: url("assets/finger.png"), auto;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    overflow-y: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.background-layer {
    position: fixed;
    top: -1;
    left: 10;
    width: 110%;
    height: 110%;
    z-index: -1;
    background-image: url("assets/images/background.png");
    background-size: 100% 100%;
}

.popup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: white;

    min-width: fit-content;
    width: 50%;
    max-width: 350px;
    border: 5px blue solid;
}

.popup-exit-bar {
    background-color: blue;

    height: 25px;
    padding: 2px 0px 6px 0px;
    min-width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-app-name {
    color: white;
    font: bold;

    font-family: 'Tahoma8Px';
    font-weight: bold;
    font-size: 20px;

    padding-bottom: 2px;
    padding-left: 1.75px;
}

.popup-exit-button {
    margin-left: auto;
    height: 100%;

    aspect-ratio: 1/1;

    border: 2px white solid;
    color: white;
    background: red;

    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-exit-button:hover {
    background-color: rgb(255, 89, 89);
}

.popup-exit-button:active {
    background-color: rgb(130, 30, 30);
}

.popup-icon {
    height: 100%;

    aspect-ratio: 1/1;
}

.popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-family: 'Tahoma8Px';
    font-size: 30px;

    padding: 40px 10px;
}

.animal-icons {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;

    height: 100px;
    display: flex;
}

.animal-icons img {
    height: 100%;
}

.animal-icon:hover {
    cursor: url("assets/finger.png"), auto;
}

.monkey-icon:hover {
    content: url("assets/icons/monkey-hover.png");
}

.cat-icon:hover {
    content: url("assets/icons/cat-hover.png");
}

.frog-icon:hover {
    content: url("assets/icons/frog-hover.png")
}

/* 
    HTP .exe file on home page when the popup box is closed
*/

.htp-exe {
    width: 65px;
    height: fit-content;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 5px;
}

.htp-exe:hover {
    background-color: rgba(172, 172, 172, 0.35);
    cursor: url("assets/finger.png"), auto;
}

.htp-exe p {
    margin: 0;

    font-family: 'Tahoma8Px';
    color: white;
    font-size: 20px;
    text-align: center;
    line-height: 15px;
    text-shadow: 1px 1px 4px black;
}

.htp-exe-icon {
    height: 100%;

    aspect-ratio: 1/1;
    background-color: red;
}

.hidden {
    display: none;
}