:root {
    --pink: #f5c2e7;
    --mauve: #cba6f7;
    --red: #f38ba8;
    --orange: #fab387;
    --yellow: #f9e2af;
    --blue: #89b4fa;
    --lavender: #b4befe;
    --white: #cdd6f4;
    --gray: #6c7086;
    --black: #11111b;
    --green: #a6e3a1;
}

@font-face {font-family: S; src: url('../assets/Sauce Code Pro Nerd Font Complete.ttf');}

body {
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    font-family: S;
    font-size: 14px;
    font-weight: bold;
    color: var(--black);
    overflow: hidden;
    cursor: url('../assets/cursor.gif'), auto;
}

#background {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: auto;
    z-index: -1;
    bottom: 100vh;
}

#taskbar {
    width: 100%;
    height: 30px;
    background: var(--lavender);
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0px;
}

#start_button {
    height: 30px;
    border: 0px;
    background: var(--red);
    font-family: S;
    font-size: 14px;
    font-weight: bold;
    padding-right: 15px;
}

#start_button:hover {
    background: var(--blue);
}

#open_app {
    border: 3px solid var(--blue);
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    align-items: center;
}

#separator {
    flex: 1;
}

#clock {
    background: var(--blue);
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

#window {
    position: absolute;
    width: calc(100% - 40px - 6px);
    height: calc(100% - 40px - 30px - 6px);
    left: 20px;
    top: 20px;
    border: 3px solid var(--lavender);
    display: flex;
    flex-direction: column
}

#titlebar {
    display: flex;
    flex-direction: row;
    background: var(--blue);
}

#title {
    flex: 1;
    padding-left: 5px;
    padding-right: 5px;
}

#close {
    background: var(--red);
    padding: 0px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 2px;
    margin: 0px;
    border: 0px;
    font-family: S;
    font-size: 14px;
    font-weight: bold;
    color: var(--black);
}

#close:hover {
    background: var(--lavender);
}

#app {
    width: 100%;
    height: 100%;
    border: 0px;
    background: #ffffff;
}

#start_menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    background: var(--blue);
    width: 300px;
    height: 400px;
    left: 5px;
    bottom: 35px;
    border: 3px solid var(--lavender);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 18px;
    padding: 5px;
    margin: 10px;
    gap: 10px;
    background: var(--lavender);
}

.startmenu_app {
    font-family: S;
    font-weight: bold;
    font-size: 16px;
    padding: 5px;
    margin: 0px;
    margin-left: 10px;
    margin-right: 10px;
    border: 0px;
    background: transparent;
    text-align: start;
}

.startmenu_app:hover {
    background: var(--lavender);
}

div {
    user-select: none;
}

#pfp {
    height: 70px;
}

.sticker {
    position: absolute;
    max-height: 100px;
}

.sticker-big {
    position: absolute;
    max-height: 200px;
}

* {
    cursor: url('../assets/cursor.gif') 16 16, auto;
}
