
/* Default Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
html {
	font-size: 18px;
	scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
/* Body defaults */
body {
  background: linear-gradient(to right, #ecf0e6, #ede8f1);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	text-rendering: optimizeSpeed;
	font-size: 14px;
	min-height: 100vh;
	line-height: 1;
}
.container {
  width: 100%;
  max-width: 600px;
  margin: 8px auto 0 auto;
}
/* Accordion */
.accordion-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordion-item {
  display: flex;
  flex-direction: column; 
}
.accordion-title {
  position: relative;
  background-color: #333333;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.3s linear;
}
.accordion-title::after {
  position: absolute;
  content: "+";
  right: 16px;
}
.accordion-body {
  background-color: #ffffff;
  padding: 0 16px;
  height: 0px;
  overflow: hidden;
  transition: all 0.3s linear;
}
.accordion-body p:last-of-type {
  margin: 0;
}
.accordion-active {
  background-color: #581F96;
}
.accordion-active::after {
  content: "-";
}
.accordion-active + .accordion-body {
  height: unset;
  padding: 16px;
}

.LineaEnBlanco{
  height: 3PX;
  background-color:#ffffff;
}
.myButtonAzulNoticias {
	width:30PX;
border-radius:2x;
border-top-left-radius: 50px ;
border-top-right-radius: 50px;
border-bottom-right-radius: 50px;
border-bottom-left-radius: 50px;
	border:2px solid #FF00FF;
	display:inline-block;
	color:#2B67B6;
	font-family:Arial;
	font-size:16px;
	font-weight:bold;
	text-decoration:none;
	text-shadow:0px 1px 0px #FF00FF;
	background-color:#CCFFFF;
}
