/************************* MAIN *********************************/

/* .introduction {
  padding-bottom: 20px;
  column-count: 2;
  column-gap: 3rem;
  column-width: 320px;
} */

/* h2 {
  padding: 2%;
  text-align: center;
} */

.image {
  padding: 2%;
  padding-top: 4%;
  text-align: center;
}

.image img {
  width: 86%;
  height: auto;
  border: 1px solid rgb(58, 121, 247);
  border-radius: 20px;
}

/* p {
  padding-top: 1rem;
  padding-bottom: 1rem;
} */

p {
  padding-bottom: 20px;
  padding-left: 30px;
  width: 94%;
  color: rgb(70, 70, 70);
  font-size: 1rem;
  text-align: justify;
}

p.noTopPadding {
  padding-top: 0;
}

/* CLOCK */

main .time {
  min-height: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

main .clock {
  width: 12rem;
  height: 12rem;
  /* background: rgb(219, 219, 219); */
  background: radial-gradient(#d3d3d3 25%, #eceafa 60%);
  position: relative;
  border: 0.3rem solid #686868;
  border-radius: 50%;
  box-shadow: 0 -0.2em 0.2em rgba(255, 255, 255, 0.06),
    inset 0 -0.2em 0.2em rgba(255, 255, 255, 0.06),
    0 0.2em 0.2em rgba(0, 0, 0, 0.3), inset 0 0.2em 0.2em rgba(0, 0, 0, 0.3);
}

.clock .hand {
  background-color: #686868;
  /* width: 1.0rem; */
  /* height: 4rem; */
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom;
  z-index: 10;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.clock .hour {
  width: 0.35rem;
  height: 3.5rem;
  background-color: #686868;
}
.clock .minute {
  width: 0.25rem;
  height: 4.5rem;
  background-color: #686868;
}
.clock .second {
  width: 0.1rem;
  height: 5.2rem;
  background-color: #686868;
}

.clock::after {
  content: "";
  position: absolute;
  background-color: #686868;
  z-index: 11;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

main section .timer {
  padding: 1.2rem;
  text-align: center;
}

.todaysDate {
  text-align: center;
}
/******************* Media Queries Breakpoints *******************/
/* Media queries can be placed in both global CSS files and within  */
/* component-specific or "endpoint" CSS files, depending on the project's  */
/* organization and desired modularity. */

/* Styles for screens less than 576px (e.g., smartphones) */
@media screen and (width < 576px) {
  header {
    display: block;
  }
  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .rights img {
    width: 200px;
    height: auto;
  }
}

/* Styles for screens wider than 576px -  768px (e.g., tablets) */
@media screen and (width >= 576px) and (width < 768px) {
  header {
    display: block;
  }

  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
    text-align: left;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .rights img {
    width: 250px;
    height: auto;
  }
}
