* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  color: #ffffff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: radial-gradient(50% 0% at 50% 50%, #396996 0%, rgb(6, 26, 43) 100%);
  background-size: 100px;
}

main {
  position: relative;
  width: 550px;
  max-width: 100%;
  display: grid;
  margin: 2em auto;
  padding: 0 1em;
  flex: 1;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: relative;
}

header .logo {
  width: auto;
  border-radius: 999px;
  border: 0.5px solid #00DCFF;
  animation: shadow-latency 2s infinite;
}

@keyframes shadow-latency {
  0%, 100% {
    box-shadow: 0px 4px 84.4px -16px #00DCFF; 
  }
  50% {
    box-shadow: 0px 4px 50px -10px #00DCFF;
  }
}

header h1 {
  color: #000;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #FFF;
  font-family: "Alumni Sans Collegiate One";
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  z-index: 1;
}


.mas18 {
  text-align: center;
  padding-bottom: 20px;
  color: #aaa;
}


.listado {
  display: grid;
  grid-gap: 2em;
  padding-bottom: 50px;
}


.item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item a {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-decoration: none;
  color: #ffffff;
  width: 100%;
  justify-content: center;
  background: radial-gradient(50% 50% at 50% 50%, #021F37 0%, rgb(5, 21, 35) 100%);
  padding: 1em;
  border-radius: 12px;
}


.item,
.itemText div,
.rssBtn {
  cursor: pointer;
  transition: all 0.3s ease;
}


.itemText div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  border: none;
}

.itemText p {
  font-size: 18px;
  margin: 0;
  align-items: center;
  text-align: center;
}

.btnPrimary {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c34420;
  width: auto;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
}

.item:hover .btnPrimary {
  background-color: rgb(239, 77, 32);
}


.rss {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: start;
}

.rssBtn {
  color: #FFFFFF;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.rss a img {
  margin-right: 0.5em;
}


.adult {
  position: absolute;
  right: 10%;
  top: -15%;
}


footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding-bottom: 10px;
  gap: 15px;
}

footer a {
  text-align: center;
}

.logoFooter {
  display: flex;
  justify-content: center;
}

.footerLogos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin: 1em 0;
}


.scale {
  transition: transform 0.3s ease;
}

.scale:hover {
  transform: scale(1.05);
}
