#countdown {
    --slant-bg: #ffffff;
    background-color: #ffffff;
    color: #0E0E0E;
    padding: 128px var(--side-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;

    .group {
        display: flex;
        flex-direction: column;
        gap: 24px;

        #time-to-text {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            
            .text-body {
                font-size: 96px;
                text-align: center;
                text-decoration: underline;
                text-decoration-color: #ff6347;
                text-decoration-thickness: 6px;
                text-underline-offset: 5px;
                
                @media screen and (max-width: 600px) {
                    font-size: 64px;
                }
            }
        }

        #timer {
            background-image: linear-gradient(to right, #ebf2ff, #f5f0fa, #ffe9f4), linear-gradient(to right, var(--blue), var(--purple), var(--pink));
            border: double 2px transparent;
            background-origin: border-box;
            background-clip: padding-box, border-box;
            border-radius: 12px;
            display: flex;
            gap: 32px;
            align-items: stretch;
            padding: 12px;
            font-size: 128px;
            line-height: 1.2;

            #numbers {
                display: flex;
                gap: 32px;
                flex-wrap: wrap;
                justify-content: center;
                background-image: linear-gradient(to right, var(--blue), var(--purple), var(--pink));
                background-clip: text;
                color: transparent;

                .number {
                    color: #0E0E0E;

                    span {
                        display: inline-block;
                        width: 1ch;
                        text-align: center;
                    }
                }
            }

            #numbers > span {
                display: flex;
                gap: 32px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .corner-dots:first-of-type svg {
                fill: var(--blue);
            }

            .corner-dots:last-of-type svg {
                fill: var(--pink);
            }
        }

        #buttons {
            display: flex;
            gap: 24px;

            a {
                width: 100%;
                padding: 12px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                text-align: center;
                justify-content: space-between;
                font-size: 40px;
                transition: background-color 0.3s;

                .corner-dots {
                    height: 100px;
                }
            }

            a:first-of-type {
                color: #ffffff;
                background-color: #0E0E0E;

                .corner-dots svg {
                    fill: #ffffff;
                }
            }

            a:first-of-type:hover {
                background-color: #232323;
            }

            a:last-of-type {
                color: #0E0E0E;
                background-color: #F3F3F3;
                border: 2px solid #D4D4D4;

                .corner-dots svg {
                    fill: #D4D4D4;
                }
            }

            a:last-of-type:hover {
                background-color: #EAEAEA;
            }
        }
    }

    @media screen and (max-width: 900px) {
        #timer {
            font-size: 64px !important;
            gap: 0 !important;
            justify-content: space-between;
        }

        #buttons {
            flex-wrap: wrap;
        }

        #buttons a {
            font-size: 32px !important;
        }

        #buttons a .corner-dots {
            height: 64px !important;
        }
    }
}
