:root {
    --p: #5d5d5d;
    --b: #0285ff;
    --a: #ffffff;
}

html,
body {
    background: var(--a);
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    width: 100%;
    height: 100%;
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    width: 100%;
    text-align: center;
    font-size: 40px;
    color: var(--b);
}