html, body {
  background: rgb(243, 193, 255);
  background: linear-gradient(0deg, rgba(243,193,255,1) 0%, rgba(145,65,191,1) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Roboto", serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  /* min-height: 100vh; */
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}
pre {
  text-align: left;
  white-space: pre-wrap;
}
img {

  border-radius: 50%;
  border: 3px rgb(183, 0, 255) solid;
  transition: transform 2s;
}

img:hover {
  animation: rotate 2s infinite;
  transform: rotate(360deg);
}
div.main-box{
  text-align: center;
  height: auto;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

main {
  border-radius: 15px;
  background-color: white;
  padding: 20px;
}


a {
  text-decoration: none;
}
a:visited {
  color: blue;
}
a.button{
  color: black;
  padding: 10px 20px;
  border: 2px rgb(183, 0, 255) solid;
  border-radius: 15px;
}
a:hover {
  color: white;
  background-color: rgb(183, 0, 255);
}

ul {
  padding: 0;
  list-style: none;
}
li {
  position: relative;
  margin: 20px;
  padding-top: 10px;
}
footer {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

#cookie_banner {
  
  margin: 0 auto;
  padding: 12px 10px;
  position: fixed;
  font-size: 24px;
  color: aliceblue;
  bottom: 0;
  overflow: visible;
  box-sizing: border-box;
  width: 100%;
  z-index: 9999;
  /* box-shadow: rgba(0, 0, 0, .5) 0px 5px 50px; */
  left: 0px;
  box-shadow: 0 -1px 10px 0 rgba(172, 171, 171, 0.3);
  background-image: linear-gradient(to right, rgba(143, 75, 172, 0.75), rgba(46, 42, 48, 0.75), rgba(143, 75, 172, 0.75));
    background-color: transparent !important;
}
#cookie_banner input[type="submit"]{
  width: 200px;
  height: 40px;
  color:white; 
  font: inherit;
  font-size: 18px;
  border-radius: 15px;
  border-style: none;
  background-color: rgb(136, 13, 185);
}


  /* Ocultar el botón "Cancelar" por defecto si JavaScript está deshabilitado */
  #cancel_button.no-js {
    display: none;
  }
