@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: royalblue;
    color: whitesmoke;
    font-size: 8.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Caveat', cursive;
    margin: 0;
    min-height: 100vh;
}
