.home {

    header {
        max-height: 0;
        opacity: 0;
        overflow: hidden;

        &.active {
            max-height: 100px;
            opacity: 1;

            @media screen and (min-width: 1000px) {
                overflow: visible;
            }
        }
    }

    main {
        margin-top: 0;

        #particle-background {
            height: calc(100svh - 75px);
            position: relative;
            overflow: hidden;
            border-top: 37px solid var(--color-bg-surface);

            @media screen and (min-width: 1000px) {
                height: calc(100svh - 100px);
                border-top: 50px solid var(--color-bg-surface);
            }

            a.scroll-down {
                display: flex;
                justify-content: center;
                align-items: center;
                background: var(--color-bg-surface);
                max-width: max-content;
                padding: 10px;
                border-radius: 55%;
                transition: .2s ease-in-out;

                @media screen and (min-width: 1100px) {
                    top: 60%;
                }

                img {
                    transform: rotate(180deg);
                }
            }

            h1 {
                position: absolute;
                top: calc(50% - 25px);
                left: 50%;
                transform: translate(-50%, -50%);
                line-height: 1;
                font-size: 3rem;
                display: flex;
                flex-direction: column;
                gap: 20px;
                align-items: center;
                backdrop-filter: blur(2px);
                padding: 40px;
                border-radius: 50%;
                width: 100%;
                max-width: 300px;

                span {
                    display: none;
                }

                img {
                    width: 100%;
                    height: auto;
                }

                .top {
                    display: flex;
                    flex-direction: column;

                    @media screen and (min-width: 1100px) {
                        flex-direction: row;
                    }
                }


                @media screen and (min-width: 1400px) {
                    font-size: 4rem;
                }

                span:nth-of-type(2) {
                    margin: 0 10px;
                }
            }
        }

        #news {
            background: var(--color-bg-surface);

            .wrapper {

                h2 {
                    color: var(--color-font-surface);
                    margin-top: 0;
                }

                .btn {
                    margin: 50px auto 0;
                }
            }
        }

        #hero {
            .wrapper {
                h2 {
                    font-size: 2rem;
                    @media screen and (min-width: 1000px) {
                        font-size: 2.5rem;
                    }

                    @media screen and (min-width: 1400px) {
                        font-size: 3rem;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 1000px) {
    .home header.active {
        overflow: visible !important;
    }
}
