@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
    background-color: #333333;
    background-image:  linear-gradient(palevioletred  4px, transparent 4px), linear-gradient(to right, palevioletred 4px, #333333 4px);
    background-size: 80px 80px;
    color: white;
    font-weight: 700;
    font-family: 'Lexend Deca', sans-serif;
    user-select: none;
}
centered {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
h1 {
    font-size: 64px;
    margin: 0;
}
button {
    outline: solid #202020;
    border: none;
    border-radius: 15px;
    margin: 5px;
    font-size: 32px;
    font-weight: bold;
    color: white;
    background: #303030;
    font-family: 'Lexend Deca', sans-serif;
    transition: .2s ease-out;
    user-select: none;
}
button:active {
    transform: scale(0.9);
}
input {
    outline: solid #202020;
    border: none;
    border-radius: 15px;
    margin: 5px;
    font-size: 32px;
    color: white;
    background: #303030;
    font-family: 'Lexend Deca', sans-serif;
    overflow: hidden;
}
input[type=checkbox] {
    transform: translateY(9px);
    width: 42px;
    height: 42px;
}
#searchOutput {
    font-size: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
video {
    width: 480px;
    outline: solid #202020;
    border-radius: 15px;
    box-shadow: none;
}
video::-webkit-media-controls-panel {
    background: none;
}
::-webkit-scrollbar {
    width: 16px;
}
::-webkit-scrollbar-track {
    background: #202020;
}
::-webkit-scrollbar-thumb {
    background: palevioletred;
}