:root{
    --accent: rgb(255, 140, 159);
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-family: 'Helvetica', sans-serif;
    background-color: rgb(20, 20, 20);
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/></filter><rect width="100" height="100" fill="rgb(20,20,20)" filter="url(%23noise)"/></svg>');
    background-blend-mode: overlay;
    background-size: auto;
    color: white;
}

p{
    text-align: center;
    font-size: 1.5rem;
}

.shake-btn{
    background-color: var(--accent);
    font-weight: bold;
    color: white;
    /* border: 2px solid white; */
    padding: 10px 20px;
    cursor: pointer;
    corner-shape: squircle;
    border-radius: 20px;
}

a {
    list-style-type: none;
    margin: 10px 0;
    color: rgb(130, 127, 127);
    font-weight: bold;
    text-decoration: none;
}