:root {
  --bg-cont-b: #303030;
  --bg-cont-b2: #515151;
  --bg-cont-w: #f5f5f5;
  --bg-b: #4285f4;
  --bg-r: #ea4335;
  --bg-y: #fbbc05;
  --bg-g: #34a853;
  --bg-o: #FF5722; /* Nuevos colores */
  --bg-p: #9C27B0; /* Nuevos colores */
  --segundos: 1.2s;
}

html,
body {
  height: 100vh;
  font-family: sans-serif;
  margin: 0;
}

html {
  font-size: 1.5vh;
}

body {
  background-color: var(--bg-cont-b);
  transition: background 0.2s;
  overflow: hidden;
}

.contenedor {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ruleta {
  width: 42rem;
  height: 42rem;
  position: relative;
  cursor: pointer;
  background-color: white;
  border-radius: 360rem;
}

.ruleta:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 3rem solid transparent;
  border-right: 3rem solid transparent;
  border-top: 8rem solid rgb(255, 255, 255);
  position: absolute;
  top: 0.2rem;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  
}

.ruleta:after {
  content: "";
  width: 15rem;
  height: 15rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 36rem;
  background-color: #fff;
  background-image: url('logo.jpg'); /* Ruta de tu imagen */
  background-size: cover; /* Ajusta el tamaño de la imagen para cubrir todo el triángulo */
  z-index: 999;
}

.colores {
  width: 40rem;
  height: 40rem;
  display: flex;
  flex-wrap: wrap;
  border-radius: 36rem;
  border: 1rem solid white;
  overflow: hidden;
  position: relative;
}

.animacion {
  animation: animacion 4s ease-out forwards;
  pointer-events: none;
}

.colorUno,
.colorDos,
.colorTres,
.colorCuatro,
.colorCinco,
.colorSeis {
  width: 20rem;
  height: 20rem;
  display: inline-block;
}

.colorUno {
  background-color: var(--bg-b);
}
.colorDos {
  background-color: var(--bg-r);
}
.colorTres {
  background-color: var(--bg-y);
}
.colorCuatro {
  background-color: var(--bg-g);
}


.note
{
    text-align: center;
    height: 80px;
    background: -webkit-linear-gradient(left, #0072ff, #8811c5);
    color: #fff;
    font-weight: bold;
    line-height: 80px;
}
.form-content
{
    padding: 5%;
    border: 1px solid #ced4da;
    margin-bottom: 2%;
}
.form-control{
    border-radius:1.5rem;
}
.btnSubmit
{
    border:none;
    border-radius:1.5rem;
    padding: 1%;
    width: 20%;
    cursor: pointer;
    background: #0062cc;
    color: #fff;
}

.btnColor {
  display: block;
  margin: 10px auto;
  padding: 10px;
  background-color: #fff; /* Color de fondo del botón */
  color: #000; /* Color del texto del botón */
  border: 1px solid #000; /* Borde del botón */
  border-radius: 5px; /* Radio del borde del botón */
  cursor: pointer;
}

.btnColor:hover {
  background-color: #000; /* Cambiar el color de fondo al pasar el mouse sobre el botón */
  color: #fff; /* Cambiar el color del texto al pasar el mouse sobre el botón */
}
/*
body {
  animation: parpadeo 2s linear infinite;
}

@keyframes parpadeo {
  0% {
    background-color: var(--bg-b);
  }
  25% {
    background-color: var(--bg-r);
  }
  50% {
    background-color: var(--bg-y);
  }
  75% {
    background-color: var(--bg-g);
  }
  100% {
    background-color: var(--bg-b);
  }
}*/


