body{
margin: 0;
padding: 0;
background: black;
overflow: hidden;
font-family: "Comic Sans MS", sans-serif;
display: flex;
justify-content: center;
flex-wrap: wrap;
}

.star{
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    animation: shining 2s infinite alternate ease-in-out;
}

@keyframes shining {
    0%{
        opacity: 0.4;
        transform: scale(1);
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
    }

    100%{
        opacity: 1;
        transform: scale(2);
        box-shadow: 0 0 6px rgba(255, 255, 255, 1);
    }
}

p{
    color: white;
    margin: 15px;
}

.tidbit{
    border-style: dashed;
    border-radius: 15%;
    border-color: aqua;
}

.crunchWrapSup{
    padding-top: 30px;
    max-width: 650px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

#socials{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100px;
}

#Konata{
    align-content: center;
}