h1{
    font-family: "Arial Black", sans-serif;
}

h2{
    font-family: Arial, sans-serif;
    font-weight: bold;
}

p, li{
    font-family: Arial, sans-serif;
}

.diddies{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.buttons{

    display: flex;
}

.buttons .butty{
    cursor: pointer;
    padding: 4px 8px;
    font-family: "Arial Black", sans-serif;
    border: 4px solid white;
    user-select: none;
}

@keyframes didy {
    0%{
        transform: translateX(-0.5px) translateY(-1px);
    }
    20%{
        transform: translateX(1px) translateY(0);
    }
    40%{
        transform: translateX(-1px) translateY(-0.5px);
    }
    60%{
        transform: translateX(0.5px) translateY(0.5px);
    }
    80%{
        transform: translateX(1px) translateY(-1px);
    }
    100%{
        transform: translateX(-0.5px) translateY(-0.5px);
    }
}

.butty.clicked{
    animation: didy 0.1s infinite linear;
    color: white;
    background: black;
    border: 4px solid white;
}

.top{
    display: flex;
    align-items: center;
    gap: 16px;
}

.inp{
    display: flex;
    position: relative;
    align-items: center;
}

#search{
    font-family: Arial, sans-serif;
    font-weight: bold;
    border-radius: 0;
    outline: none;
    padding: 4px;
    width: 100%;
}

#search:focus{
    border: 2px solid black;
}

#wipe{
    position: absolute;
    right: 0;
    cursor: pointer;
    background: none;
    border: none;
}

.hidden{
    display: none;
}

