@font-face {
    font-family: Coolvetica;
    /* set name */
    src: "fonts/Coolvetica-Rg.woff";
    /* url of the font */
}

body {
    margin: 0;
    font-family: Coolvetica;
    background: orchid;
}

.editor {
    display: flex;
    width: 100vw;
    flex-direction: row;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.toolbar {
    width: 350px;
    background: #85FF8F;
    display: flex;
    flex-direction: column;
    margin: auto;
    position: relative;
    z-index: 2;
    border: 1rem solid;
    border-color: #191C24;
    border-radius: 20px;
}

.toolbar-item {
    padding: 20px;
    background: #85FF8F;
}

.tool-label {
    position: relative;
    font-family: Coolvetica;
    font-size: larger;
    font-weight: bold;
}

.button-thing {
    background-color: #ff70f2;
}

.button-thing-mother {
    position: relative;
    padding-left: 5%;
}

/* .button-spotify {
    color: #85FF8F;
    background-color: black;
    border: none;
    width: 100%;
} */

.button-spotify-mother {
    padding-bottom: 30px;
    margin: auto;
}

.tool-input {
    width: 100%;
    height: 100%;
    accent-color: green;
}

.spacer {
    flex: 1;
}

.image-area {
    flex-grow: 0;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #85FF8F;
}

.veralistCLASS {
    font-weight: bolder;
    size: green;
    padding-top: 20px;
    padding-bottom: 20px;
}

li {
    justify-content: row;
    margin: 5px;
    width: fit-content;
    padding: 2px;
    border: 3px solid;
    border-color: #191C24;
    border-radius: 0.5em;
}

img {
    max-width: 30px;
    max-height: 30px;
    padding-left: 5px;
    vertical-align: middle;
    border-radius: 5px;
}

.party{
/*     border-color: #ff70f2; */
    background: #ff70f2;
}

.veramother {
    font-weight: bolder;
    text-align: center;
    padding: 5%;
    font-size: large;
    line-height: 10px;
}

.veranumbers {
    width: 10%;
    background-color: whitesmoke;
    font-weight: bolder;
    flex-grow: 2;
}

.warningtext {
    text-align: center;
    color: #fc0f1e;
    font-size: larger;
    font-family: Coolvetica;
}

.hidden {
    display: none;
}

#canvas {
    max-width: 100%;
    max-height: 100%;
}



/* ALL OF THE FANCY SPOTIFY BUTTON STUFF */

.button-spotify {
  padding: 1.3em 3em;
  font-family: Coolvetica;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #191C24;
  background-color: #FFF3EE;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.button-spotify:hover {
  background-color: #FF70F2;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #FFF3EE;
  transform: translateY(-7px);
}

.button-spotify:active {
  transform: translateY(-1px);
}


/*ALL OF THE FANCY BACKGROUND STUFF */

.container {
    width: 100%;
    height: 100%;
    background: green;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #85FF8F 50%, transparent 20%),
        radial-gradient(circle, transparent 10%, #191C24 20%);
    background-size: 30px 30px;
    /* Adjust the size of the pattern */
    animation: moveBackground 40s linear infinite;
    /* Adjust the animation duration and timing function */
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20%, 20%);
    }
}