#subscribe{
  background-color: black;
  color: white;
}

.imgsrc {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: auto;
}

button,#whatcomputerpicked{
  width: 165px;
  height: 62px;
  cursor: pointer;
  color: #fff;
  font-size: 17px;
  border-radius: 1rem;
  border: none;
  position: relative;
  background: #11002e;
  transition: 0.1s;
}
button,#whatcomputerpicked {
  display: block;
  margin: 10px 0;
  text-align: center;
}

button::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
  circle farthest-corner at 10% 20%,
  rgba(255,94,247,1) 17.8%,
  rgba(2,245,255,1) 100.2%
  );
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
#whatcomputerpicked::after {
  z-index: 0;
  filter: blur(15px);
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
  circle farthest-corner at 10% 20%,
  rgba(255,94,247,1) 17.8%,
  rgba(2,245,255,1) 100.2%
  );
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
#whatcomputerpicked {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #11002e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 1000px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

#insidediv {
  margin: 0;
  z-index: 1;
}

button:active,#whatcomputerpicked {
  transform: scale(0.9) rotate(3deg);
  background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  transition: 0.5s;
}

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

p {
  font-family: "Twinkle Star", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
}

input {
  padding: 12px 18px;
  border: none;
  border-radius: 30px;
  outline: none;
  font-size: 16px;
  background: linear-gradient(145deg, #c90e0e, #fad0c4);
  color: #333;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: 0.3s;
}

input::placeholder {
  color: #555;
  opacity: 0.7;
}

input:focus {
  box-shadow: 0 0 10px rgba(255, 154, 158, 0.6);
}

.circle-btn {
   width: 200px;
  height: 190px;
  border-radius: 90%;
}
body{
  background-color: #333;
  overflow: hidden;
}
#title {
  text-align: center;
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}
#computer-picked {
  margin: 20px auto 0 auto;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

#scoreboard {
  text-align: center;
  margin-top: 20px;
}

#scoreboard span {
  margin: 0 15px;
  font-weight: bold;
  font-size: 35px;
}
#wrapper {
  transform: scale(0.6);
  transform-origin: top left;
  width: 150%;
}
