/* ============== Fonts ============== */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap');
/* ============== Tags ============== */
*,body,html
{
  transition-duration: 0.1s;
}
*
{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Red Hat Display', sans-serif;
  border: 0;
}
body,html
{
  margin: 10px;
  padding: 0;
  background-color: black;
  color: #ffffff;
}
*,body,html:focus
{
  border-radius: 0px;
  outline: 0;
  border: 0;
}
textarea {
  width: calc(75vw - 20px);
  height: calc(100vh - 40px) !important;
  background: #000000;
  color: rgb(255, 255, 255);
  border: 1px solid #1d1d1d;
  padding: 20px;
  border-radius: 20px;
  resize: none;
}
input {
  width: 100%;
  background: #000000;
  color: rgb(255, 255, 255);
  border: 1px solid #1d1d1d;
  padding: 10px;
  border-radius: 15px;
}
button, .artist-btn {
  font-size: 14px;
  cursor: pointer;
  background: #000000;
  color: #fff;
  border: 1px solid #1d1d1d;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 700;
}
button:hover, .artist-btn:hover {
  background: #0f0f0f;
}
/* ============== Scrollbar ============== */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}