* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.gui::before {
    content: url('./sliders-solid.svg');
    position:absolute;
    opacity: 1;
    right: 0;
    top:0;
    margin: 20%;
    height: 60%;
    width: 60%;
    pointer-events: none;
    transition: opacity .3s;
}

.gui:hover::before,
.gui:focus-within::before {
    opacity: 0;
}

.gui {
    position: fixed;
    top: 30px;
    right: 30px;
    margin-left: 30px;
    text-align: right;
    padding: 24px;
    background-color: #cf55ff;
    border: .6px solid #cf55ff;
    overflow: hidden;
    transition: .8s;
    border-radius: 100% 0 100% 100%;
    transform: scale(.2);
    transform-origin: right top ;
    aspect-ratio: 1/1;
    animation: getAttention 2s infinite;
}

.gui ul {
    display:flex;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    list-style-type: none;
    padding:0;
    opacity: 0;
    transition: .8s;
    height:100%;
}

.gui:hover,
.gui:focus-within {
    transform: scale(1);
    border-radius: unset;
    background-color: #ffffffee;
    animation-play-state: paused;
}

.gui:hover ul,
.gui:focus-within ul {
    opacity: 1;
}

.gui input {
    margin-left: 1em;
}

@keyframes getAttention {
    0% { opacity: 1}
    25% { opacity: .6}
    50% { opacity: 1}
}