:root {
    --standard_fx_fast: 0.15s cubic-bezier(0.31, 0.94, 0.34, 1.00);
    --standard_fx_default: 0.2s cubic-bezier(0.31, 0.94, 0.34, 1.00);
    --standard_fx_slow: 0.3s cubic-bezier(0.31, 0.94, 0.34, 1.00);
}

body {
    background-color: black;
}

.pageFrame {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    background-color: #000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tabletFrame {
    position: relative;

    width: 1280px;
    height: 800px;

    padding: 50px;
    box-sizing: border-box;

    background-color: #131313;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}