body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 60s ease infinite;
	height: 100vh;
    color: white;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.input-group {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

table {
    margin: 0 auto;
    border-spacing: 16px;
}

h1 {
    text-align: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 0;
}

h2 {
    text-align: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    font-size: 25px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0;
}

h3 {
    text-align: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    font-size: 20px;
    font-weight: 1;
    padding-bottom: 16px;
}

p {
    text-align: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    font-size: 15px;
    font-weight: 1;
    padding: 0;
}

/* Set the height and width of each cell */
.cell {
    opacity: 0.9;
    height: 140px;
    max-height: 140px;
    border-radius: 10px;
    padding: 100px;
    width: 140px;
    max-width: 140px;
    transition: 0.3s;
    color: white;
    padding: 4px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    cursor: pointer;
    background-color: #474747;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24);
    overflow-wrap: break-word;
    border: #e8d41e 2px dashed;
    
}

/* Set the background color of a cell when it's clicked */
.cell.clicked {
    opacity: 1;
    transition: 0.3s;
    background-color: #e8d41e;
    color: #2E2E2E;
}

.input-group {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    justify-content: center;
}

.chips-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.chip {
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    padding-left: 8px;
    height: fit-content;
    max-width: fit-content;
    font-size: 16px;
    border-radius: 10px;
    background-color: #2E2E2E;
    color: white;
    margin: 4px;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.chip-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.remove-button {
    font-weight: 600;
    margin-left: 8px;
    padding: 0 8px;
    font-size: 16px;
    line-height: 35px;
    border-radius: 0 10px 10px 0;
    background-color: #ad2d2d;
    opacity: 0.7;
    color: white;
    transition: 0.3s;
    cursor: pointer;
}

button {
    font-size: 17px;
    padding: 0.5em 2em;
    border: transparent;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24);
    background: #2E2E2E;
    border-radius: 0 10px 10px 0;
    transition: 0.3s;
}

button:hover {
    transition: 0.3s;
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
    cursor: pointer;
}

button:active {
    transform: translate(0em, 0.2em);   
}

button span {
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s;
}

button:hover span {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s;
}

input {
    background-color: #2E2E2E;
    border-radius: 10px 0 0 10px;
    border: none;
    width: 300px;
    padding-left: 8px;
    color: white;
    font-size: 14px;
    spallcheck: false;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

::placeholder {
    color: rgb(184, 184, 184);
}