@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,900&family=Ubuntu:wght@700&display=swap');

*
{
    line-height: 1;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-decoration: none;
    outline: none;

    -webkit-user-drag: none;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body
{
    background-image:    linear-gradient(rgb(212, 99, 122), rgb(226, 82, 204), rgb(153, 65, 240), rgb(48, 79, 255));
    min-height: 100vh;
}

a:focus-visible
{
    outline: 4px dashed #eeeae5;
    outline-offset: 4px;
}

.noise
{
    position: fixed;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    -webkit-animation: noise .4s steps(1) infinite;
            animation: noise .4s steps(1) infinite;
    pointer-events: none;
    opacity: .2;
    background-image: url(noise.png);
}

.container
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;
    width: 100%;
    min-width: 320px;
    max-width: 570px;
    margin: auto;
    padding: 32px 16px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}
@media (max-width: 570px)
{
    .container
    {
        max-width: 320px;
    }
}

.container > a
{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 4px 4px;
    border: 2px solid #eeeae5;
    border-radius: 40px;
    background-color: transparent;

    align-items: center;
    align-self: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
}

.container > a > span
{
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    display: block;
    padding: 0 4px;
    pointer-events: none;
    color: #eeeae5;
}

.container > a > i
{
    position: relative;
    width: 24px;
    height: 24px;
    content: '';
    pointer-events: none;
    background-image: url(pleading.svg);
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

.container > a:hover > i,
.container > a:focus-visible > i
{
    -webkit-animation: hehe .4s linear infinite;
            animation: hehe .4s linear infinite;
    background-image: url(sunglasses.svg);
}

.container > ul > li
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 16px;
}

.container > ul > li > a
{
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #eeeae5;

    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-text-stroke: 2px transparent;
}
@media (max-width: 570px)
{
    .container > ul > li > a
    {
        font-size: 32px;
    }
}

.container > ul > li > a:hover,
.container > ul > li > a:focus-visible
{
    color: transparent;

    -webkit-text-stroke: 2px #eeeae5;
}

.container > ul > li > a > span
{
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    display: block;
    padding: 0 0 0 8px;
    pointer-events: none;
    opacity: 0;
    color: #eeeae5;

    align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    -webkit-text-stroke: 2px transparent;
}
@media (max-width: 570px)
{
    .container > ul > li > a > span
    {
        font-size: 12px;
        padding: 0 0 0 6px;
        letter-spacing: 0;
    }
}

.container > ul > li > a:hover > span,
.container > ul > li > a:focus-visible > span
{
    opacity: 1;

    -webkit-text-stroke: 2px transparent;
}

@-webkit-keyframes noise
{
    0%,
    100%
    {
        background-position: 0 0;
    }
    20%
    {
        background-position: 50% 50%;
    }
    40%
    {
        background-position: 25% 25%;
    }
    60%
    {
        background-position: 75% 75%;
    }
    80%
    {
        background-position: 0 100%;
    }
}

@keyframes noise
{
    0%,
    100%
    {
        background-position: 0 0;
    }
    20%
    {
        background-position: 50% 50%;
    }
    40%
    {
        background-position: 25% 25%;
    }
    60%
    {
        background-position: 75% 75%;
    }
    80%
    {
        background-position: 0 100%;
    }
}

@-webkit-keyframes hehe
{
    0%,
    100%
    {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    25%
    {
        -webkit-transform: rotate(-4deg);
                transform: rotate(-4deg);
    }
    50%
    {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    75%
    {
        -webkit-transform: rotate(4deg);
                transform: rotate(4deg);
    }
}

@keyframes hehe
{
    0%,
    100%
    {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    25%
    {
        -webkit-transform: rotate(-4deg);
                transform: rotate(-4deg);
    }
    50%
    {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    75%
    {
        -webkit-transform: rotate(4deg);
                transform: rotate(4deg);
    }
}