/** VARIABLES */
:root {

    --dark-0-background-color: #272725;
    --mid-1-foreground-color: #373730;
    --mid-2-foreground-color: #616059;
    --bright-interactable-yellow-color: #fffb00;
    
    /* Engine colors */
    --Godot-Color: #478cbf;
    --Unity-Color: var(--mid-2-foreground-color);
    --Unreal-Color: var(--mid-2-foreground-color);
    --GameMaker-Color: #8bc34a;
    --Construct-Color: #00e1c8;

}

/** UNIVERSAL */
/** BASIC CLASSES */
*{
    margin: 0;
    padding: 0; 
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    max-width: 100%;
}
body {
    background-color: var(--dark-0-background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}
button{
    cursor: pointer;
    font-size: larger;
    border-radius: 500px;
    padding: 8px;
    height: 140px;
    width: 140px;
    background-color: var(--mid-1-foreground-color);
    font-weight: bold;
    text-transform: uppercase;
    border: var(--mid-1-foreground-color) solid 3px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    text-transform: uppercase;
}
h1{
    font-size: 3rem;
}
a {
    text-decoration: none;
    color: var(--bright-interactable-yellow-color);
}
a:hover {
    text-decoration: underline;
}
img{
    user-select: none;
}

/** CUSTOM CLASSES */
.HighlightOnHover:hover{
    border: var(--bright-interactable-yellow-color) solid 3px;
    box-shadow: var(--bright-interactable-yellow-color) 0px 0px 5px;
    transform: scale(1.1);
    transition: 
    border 0.25s ease-in,
    box-shadow 0.25s ease-in,
    transform 0.2s ease-in;
}
.HighlightOnHover{
    border: 3px solid transparent;
    transition: 
    border 0.2s ease-out, 
    box-shadow 0.2s ease-out, 
    transform 0.4s ease-out;
}
.DottedOutline{
    border: var(--mid-1-foreground-color) 5px dashed;
    border-radius: 10px;
}
.TextBox{
    position: relative;
    padding: 20px;
    background-color: var(--mid-1-foreground-color);
    border: var(--mid-2-foreground-color) 5px dashed;
    border-radius: 10px;
    margin: 10px;
}
.card:hover{
    scale: 1.08;
}
.card{
    transition-timing-function: ease-in-out;
    transition: .15s;
}
.floating-text {
    display: flex;
    animation: float-up-fade 1.5s ease-out forwards;
    font-weight: bold;
    text-shadow:
        0 2px 8px #0008,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    text-wrap: nowrap;
    width: fit-content;
}

@keyframes float-up-fade {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-40px);
    }
}



/** RECURING ELEMENTS */
/* CUTOUTS */
.cutout{
    filter:
    drop-shadow(-7px 3px 4px rgba(21, 17, 21, 0.4));
    margin-bottom: 10px;
    margin: 30px;
}
#cutout-sitting{
    height: 300px;
}
#cutout-standing{
    height: 400px;
}