* {
    color: var(--font);
}

#baseboard {
    background-image: url("../assets/banner.gif");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 100%;
    background-attachment: fixed;
    min-height: 60dvh;
    overflow: hidden;
    position: relative;
    border-bottom: solid 0.5dvh var(--color-pry);
    hgroup {
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 1dvw;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);

        label {
            margin: 1vw;
            font-family: "Sixtyfour", sans-serif;
            font-size: 2em;

            span {
                font-family: "Sixtyfour", sans-serif;
                color: var(--color-pry);
            }

            text-shadow:
                0vw 0 1vw var(--color-pry),
                0vw 0 1vw var(--font);
            animation: pulsating 0.5s ease-in-out infinite;
        }

        label::after {
            content: "|";
            animation: blink 0.3s ease-in-out infinite;
        }

        #search {
            width: 100%;
            height: 35dvh;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;

            ul {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 30%;
                background-color: var(--dark);
                border: solid 0.5dvh var(--color-pry);
                border-radius: 10vw;
                padding: 0.5dvw;

                input[type="text"] {
                    background-color: transparent;
                    width: 80%;
                    border: none;
                    border-right: dotted 2px var(--font);
                    outline: none;
                    font-size: 1.5em;
                    padding: 0 0 0 1vw;
                }

                span {
                    margin: 0 0 0 1dvw;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--color-pry);
                    width: 3dvw;
                    height: 3dvw;
                    border-radius: 100%;
                    cursor: pointer;
                    transition: 0.3s;
                }

                span:hover {
                    background-color: var(--bg-light);
                }
            }
        }

        ul:nth-child(3) {
            position: absolute;
            width: 100%;
            min-height: 15%;
            left: 0;
            bottom: 4dvw;
            display: flex;
            justify-content: center;
            align-items: center;

            li {
                a {
                    justify-content: center;
                    background: rgba(20, 20, 20, 0.5);
                    transition: 0.3s;
                    border-radius: 100vw;
                    font-size: 1.5em;
                    padding: 0.5vw 3vw 0.5vw 2vw;
                    margin: 1vw;
                    display: flex;
                    align-items: center;
                    cursor: pointer;
                    span {
                        width: 3dvw;
                        height: 3dvw;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                }
                a:hover {
                    background-color: var(--color-pry);
                    color: white;
                    span {
                        color: white;
                    }
                    box-shadow:
                        0 0 20vw var(--font),
                        0 0 2vw var(--color-pry);
                }
            }
        }
    }
}

@media (width < 600px) {
    #baseboard {
        background-position: 0 0;
        background-size: 150%;
        min-height: 40dvh;
        hgroup {
            #search {
                ul {
                    width: 80%;
                    span {
                        width: 10dvw;
                        height: 10dvw;
                    }
                }
            }
            ul {
                li {
                    width: 40%;
                    span {
                        margin: 0 2vw 0 0;
                    }
                }
            }
        }
    }
}
