* {
    box-sizing: border-box;
}

body {
    padding: 1rem;
    background-color: #212121;
}

.layout {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Audiowide", sans-serif;
    gap: 0px;
}

.rainbow {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgb(255, 0, 0)), color-stop(0.17, rgb(255, 157, 0)), color-stop(0.34, rgb(255, 242, 0)), color-stop(0.51, rgb(0, 255, 34)), color-stop(0.68, rgb(0, 38, 255)), color-stop(0.84, rgb(136, 0, 255)), color-stop(1, rgb(247, 0, 255)));
    background-image: gradient(linear, left top, right top, color-stop(0, #f22), color-stop(0, rgb(255, 0, 0)), color-stop(0.17, rgb(255, 157, 0)), color-stop(0.34, rgb(255, 242, 0)), color-stop(0.51, rgb(0, 255, 34)), color-stop(0.68, rgb(0, 38, 255)), color-stop(0.84, rgb(136, 0, 255)), color-stop(1, rgb(247, 0, 255)));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 6rem;
}