*,:after,:before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
	text-decoration: none;
	outline: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html {
	font-family: system-ui, sans-serif;
	font-size: 18px;
	color: #000;
	background: #fff;
	min-height: 100vh;
	width: 100%;
}

body {
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

div {
    width: 150px;
    height: 150px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

audio {
    display: none;
    width: 0;
    height: 0;
    opacity: 0;
}