* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

main {
    background-color: black;
    color: white;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main .coming-soon {
    padding: 2em;
}

main .coming-soon h1 {
    margin: 0;
    text-align: right;
    font-size: 3em;
}

main .coming-soon h5 {
    margin: 0;
    text-align: right;
    font-size: 1.25em;
}

.subtitle {
    background: linear-gradient(to right, rgb(245, 115, 50) 20%, hsl(40 95% 55%) 40%, hsl(40 95% 55%) 60%, rgb(245, 115, 50) 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}