:root {
    --Black:    33, 29, 38;
    --Purple:   184, 130, 251;
    --Blue:     176, 172, 253;
    --Pink:     242, 179, 238;
    --White:    212, 223, 237; 

    --DPurple:  55, 36, 75;
    --DBlue:    62, 61, 92;
    --DPink:    94, 69, 92;
    --DWhite:   89, 91, 97;
}

* {
    padding: 0;
    margin: 0;
}

body {
    background-image: url("../Images/Vignette.png"), url("../Images/SRH_bg_Tiled.png");
    background-size: 100% 100%, auto;
    background-attachment: fixed;
    height: 100%;
    font-family: "cofo-sans-pixel", sans-serif;
    font-weight: 400;
    font-style: normal;
}

main {
    margin: 80px 40px;
    display: flex;
    flex-wrap: wrap;
}

p::before {
    content: "> ";
}

.PopText::after {
    content: ".exe";
}

.PopBox {
    position: absolute;
    min-width: fit-content;
    max-width: 600px;
    max-height: 600px;
    margin: 7px auto;
    border: 60px solid transparent;
    border-image: url("../Images/SRH_border.png") 40 stretch;
    background-color: rgb(var(--DPurple));
    color: rgb(var(--Pink));
    box-shadow: 13px 13px 70px black;
}

.PopHead {
    position: absolute;
    top: -60px;
    left: -60px;
    height: 26px;
    width: 213px;
}

.PopText {
    font-size: 12.6px;
    border: 4px solid rgb(var(--DPurple));
    color: rgb(var(--Blue));
    background-color: rgb(var(--DBlue));
    width: fit-content;
    float: left;
}

.PopBtns {
    width: 60px;
}

.PopBtnBox {
    width: fit-content;
    float: right;
}

input {
    background-color: rgb(var(--DBlue));
    border: 4px solid rgb(var(--DPurple));
    color: rgb(var(--Blue));
    width: 120px;
    height: 30px;
    font-size: 16px;
    font-family: "cofo-sans-pixel", sans-serif;
    font-weight: 400;
    font-style: normal;
}

button {
    background-color: rgb(var(--White));
    border: 4px solid rgb(var(--DPurple));
    color: rgb(var(--DPurple));
    width: 50px;
    height: 40px;
    font-size: 14px;
    font-family: "cofo-sans-pixel", sans-serif;
    font-weight: 400;
    font-style: normal;
}

::placeholder {
    color: rgb(var(--Blue));
    font-family: "cofo-sans-pixel", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.PopResize {
    height: 17px;
    max-width: 600px;
    position: relative;
    left: 60px;
    bottom: -60px;
    resize: both;
    overflow: auto;
    float: right;
}