.device-no-support {
    text-align: center;
    margin-top: 10%;
    padding: 20px;
}

* {
    margin: 0;
    padding: 0;
}

html {
    background: linear-gradient(-45deg, #181818, #292828, #111110, #1d1d1c);
    background-size: 400% 400%;
    animation: gradient 25s ease-in-out infinite;
    height: 100vh;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    color: white;
    height: 100vh;
}
#demo-body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    color: white;
    height: 100vh;
}

header {
    background: #141414;
    display: flex;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    justify-content: space-around;
    flex-wrap: wrap;
    overflow: hidden;
}

#logo-container {
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 0;
    max-height: 5rem;
    align-items: center;
}

#ip-logo {
    padding: 10px;
    height: 4rem;
    filter: brightness(100);
}

h1 {
    border-left: 1px solid white;
    padding-left: 10px;
    height: 2.5ch;
    font-weight: 100;
}

#menu-container {
    display: inline-flex;
    min-width: min-content;
    max-width: max-content;
}

.btn {
    font-family: "Poppins", sans-serif;
    display: inline-flex;
    margin: auto 0.5rem;
    padding: 1rem;
    min-width: fit-content;
    vertical-align: middle;
    line-height: 1rem;
    text-align: center;
    border: none;
    /* border: 0.1px solid #363636; */
    border-radius: 5rem;
    color: white;
    background: #141414;
    box-shadow:  10px 10px 20px #080808,
            -10px -10px 20px #202020;
    transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.btn:hover {
    background: #191919;
    box-shadow:  5px 5px 11px #080808,
             -5px -5px 11px #202020;
}

.btn:active  {
    background: #191919;
    box-shadow: inset 5px 5px 20px #0a0a0a,
            inset -5px -5px 20px #282828;
}

#ip-toggle-header {
    height: auto;
    min-width: fit-content;
}

#ip-toggle-header > svg {
    fill: white;
    display: block;
    width: 1rem;
    height: auto;
}

iframe {
    bottom: 0;
    flex-grow: 1;
    border: none;
    width: 100%;
}

.hidden:is(header) {
    max-height: 1.5rem;
    overflow: visible;
    filter: drop-shadow(0 0 1px rgb(67, 67, 67));
}

.hidden #logo-container,
.hidden #menu-container{
    visibility: hidden;
    max-height: 3rem;
}

.hidden #ip-toggle-header {
    position: absolute;
    top: -10px;
    right: 0;
}

.hidden #ip-toggle-header,
.hidden svg
 {
    scale: 80%;
    visibility: visible;
    display: block;
    box-shadow: none;
}

.hidden svg {
    rotate: 180deg;
}