:root {
    --grey: #F3F4F6;
    --blue: #60A5FA;
    --green: #34D399;
    --white: #FEFEFE;
    --violet: #C4B5FD;
}

html {
    width: 100%;
    height: 100%;
    font-family: Lato, serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: var(--grey);
    height: 100%;

    p{
        font-size: 30px;
        color: var(--blue);
    }
}