@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
}

body {
  background: rgb(2, 0, 36);
  background: linear-gradient(27deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 46%, rgba(0, 212, 255, 1) 100%);
}

.container {
  width: 35% !important;
  min-width: 35% !important;
  height: auto;
  margin: auto;
  margin-top: 15%;

  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(9.5px);
  -webkit-backdrop-filter: blur(9.5px);
  border-radius: 10px;
  padding: 1%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

p {
  margin: 0;
}

.input-text {
  background: rgba(0, 0, 0, 0);
  border-radius: 50px;
  border: 2px white solid;
  width: 100px;
  color: white;
}

.input-color {
  border-radius: 50px;
  border: 2px white solid;
  width: 100px;

}

.output {
  background-color: #000;
  border-radius: 25px;
  width: 256px !important;
  height: 256px !important;
  min-height: 256px !important;
  max-height: 256px !important;
  min-width: 256px !important;
  max-width: 256px !important;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.icon-line {
  background-color: white;
  position: absolute;
  bottom: 0;
  width: 256px;
  height: 32px;
}

.icon-text {
  color: white;
  margin: 10px;
  font-size: 115px;
}

button {
  border-radius: 50px;
  border: 2px white solid;
  width: 100px;
}