* {
    box-sizing: border-box;
}
body {
    height: 100vh;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    
    background: linear-gradient(to top, #c50756, #ff0032);
}

h1, p {
    padding: 0;
    margin: 0;
}

.emoji {
    font-family: "Twemoji Mozilla",
               "Apple Color Emoji",
               "Segoe UI Emoji",
               "Segoe UI Symbol",
               "Noto Color Emoji",
               "EmojiOne Color",
               "Android Emoji";
    font-size: 10rem;
}
.title {
    font-size: clamp(2rem, 3.5rem, 4vw);
    line-height: 1.1;
    text-align: center;
    font-family: Roboto, sans-serif;
    color: #fff;
    text-wrap: balance;
}

.subtitle {
    font-size: 1rem;
    text-align: center;
    font-family: Roboto, sans-serif;
    color: #ffffffaf;
    padding-top: 0.5rem;
    text-wrap: pretty;
}