html {
	box-sizing: border-box;
	font-size: 62.5%;
}

*, *:before, *:after {
  margin: 0;
  padding: 0;
	box-sizing: inherit;
}

body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  min-height: 100vh;
  
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  left: 0;
  width: 100%;
  /* height: 100dvh; */
  height: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    linear-gradient( to bottom right, 
      rgba(0, 104, 71, 1), rgba(0, 104, 71, 0.2) 35%, 
      rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.6) 51%, rgba(255, 255, 255, 0.3) 52%, 
      rgba(206, 17, 38, 0.2) 70%, rgba(206, 17, 38, 0.8));
  background-repeat: no-repeat;
  z-index: -1;
}

img { width: 100%; display: block; }
a { text-decoration: none; }

header {
  padding: 3rem 2rem;
}

.title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #FFF;  
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}

.title > span {
  background-image: linear-gradient(to right,
    rgba(0, 104, 71, 1) 0%, 
    rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 67%, 
    rgba(206, 17, 38, 1) 100%);
  background-clip: text;
  color: transparent;
  text-shadow: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: rgba(0, 0, 0, .5);
  padding: 1rem;
  border-radius: 1rem;
  color: #FFF;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main > p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.audio-switch-container {
  margin-bottom: 1rem;
}

.audio-switch-container > p {
  font-size: 1.2rem;
}

.audio-switch-container > p:nth-child(2) {
  margin-top: .5rem;
  margin-bottom: 1rem;
}

.switch {
  display: inline-block;
  width: 5rem;
  height: 2.5rem;
  position: relative;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider { /* fondo del switch */
  background-color: #ccc;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 2rem;
  display: flex;
  align-items: center;

  transition: .4s;
}

.slider:after { /* circulo del switch */
  position: absolute;
  content: '';
  height: 2rem;
  width: 2rem;
  background-color: #FFF;
  border-radius: 50%;
  left: .3rem;

  transition: 0.4s;
}

input:checked + .slider {
  background-color: #006847;
}
input:focus + .slider {
  box-shadow: 0 0 1px #006847;
}
input:checked + .slider:after {
  transform: translateX(2.5rem);
}

.temporizador-frase {
  width: 32rem;
  height: 22rem;
  margin-bottom: 4rem;
  position: relative;
}

#temporizador-contenedor {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 2rem;
}

.temporizador-bloque {
  background-color: rgba(255, 255, 255, 1);
  width: 15rem;
  height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  box-shadow: 0 4px 6px rgba(206, 17, 38, 0.3);
  color: #006847;
}

.temporizador-bloque span {
  font-size: 5rem;
  margin-bottom: .5rem;
}

.temporizador-bloque .label {
  font-size: 1.5rem;
}

#frase-himno {
  margin: 2rem 0 4rem 0;
}

#frase-himno > p:first-child {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

#frase-himno > p:nth-child(2) {
  width: 26rem;
  line-height: 1.5;
  font-size: 2rem;
  margin: 0 auto;
  color: #FFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

#frase-himno > p:nth-child(2) > span {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  background-image: linear-gradient(to right,
    rgba(0, 104, 71, 1) 0%, 
    rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 67%, 
    rgba(206, 17, 38, 1) 100%);
  background-clip: text;
  color: transparent;
}

.tags {
  position: absolute;
  width: 100%;
  bottom: 3rem;
  display: flex;
  justify-content: space-between;
}

.tags > p:first-child {
  font-size: 2rem;
  color: #006847;
}
.tags > p:last-child {
  font-size: 2rem;
  color: #CE1126;
}

.mensaje-final > p:first-child {
  font-size: 2.5rem;
  font-weight: bold;
  width: 30rem;
  margin: 0 auto;
  margin-bottom: 3rem;
  color: #FFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.mensaje-final > p:last-child {
  font-size: 5rem;
  font-weight: bold;
  background-image: linear-gradient(to right,
    rgba(0, 104, 71, 1) 0%, 
    rgba(255, 255, 255, 1) 47%, rgba(255, 255, 255, 1) 67%, 
    rgba(206, 17, 38, 1) 100%);
  background-clip: text;
  color: transparent;
}

aside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  width: 100%;
  margin-bottom: 4rem;
}

aside p {
  font-size: 1.5rem;
}

.donate > p {
  color: #EAB308;
  margin-bottom: 1rem;
}

.donate button {
  border: none;
  background-color: #FFD140;
  border-radius: 1rem;
  cursor: pointer;
}
.donate button:hover {
  background-color: #FFE888;
}

.usuarios > p:nth-child(1) {
  color: #FFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}

.usuarios > p:nth-child(2) {
  font-size: 1.8rem;
  color: #FFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.cantando-paz {
  width: 100%;
  font-size: 2rem;
  margin-bottom: 1rem;
}

aside img {
  width: 14rem;
  margin-top: 1rem;
}

footer {
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer > img {
  width: 5rem;
}

footer > p {
  font-size: 1.5rem;
}

footer span:nth-child(1) { color: #006847; }
footer span:nth-child(2) { color: #FFF; }
footer a { color: #CE1126; }
footer a:hover { color: #FF0000; }