:root{

    --colLight: #ffffff;
    --colLightRGB: 255,255,255;

    --colDark: #000000;
    --colDarkRGB: 0,0,0;

    --colBg: #202A34;
    --colBgRGB: 69, 90, 100;

    --colBgdark: #343c46;
    --colBgRGB: 69, 90, 100;

    --colMain: #5ef919;
    --colMainRGB: 94,249,25;

    --colAccent: #f97d28;
    --colAccentRGB: 249,125,40;

}

* {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:middle;
    background:transparent;
}

body{
    margin: 0;
    background-color: var(--colBg);
}

#all{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    padding: 0px;
    margin: 0;
}

#pbg{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

#pic{
    position: absolute;
    width: 80%;
    height: 80%;
    object-fit: contain;
    object-position: center center;
}



