body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

html {
  font-size: 62.5%;
}

/* Global Classes  */

.Flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Wrapper {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  padding: 1.5rem;
}

.secHeading {
  font-size: 3rem;
  color: #2d8ad9;
  text-align: center;
  text-transform: uppercase;
}
/* Global Classes  */

.sectionWrapper {
  display: flex;
  margin: 30px 0;
}

.primarySec {
  width: 70%;
  padding: 0 20px;
  margin-right: 30px;
}
strong {
    font-size: large;
}
.sbImage {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  background-color: aquamarine;
}

.sbImage img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.sbText {
  padding: 15px 0;
}

.sbText h3 {
  font-size: 2.5rem;
}

.sbText p {
  font-size: 1.6rem;
}

.sbWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author,
.date {
  font-size: 1.3rem;
  color: #8a8a8a;
}

/* Secondary Stores and Widgets */
.secondarySec {
  width: 30%;
  padding: 5px;
}

.secondarySec .secHeading:first-child {
  margin-top: 0;
}

.secondarySec .secHeading {
  font-weight: 700;
  margin: 30px 0;
}
.widgets {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  align-items: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  background-color: white;
}

.widgets a {
  margin: 5px;
  color: white;
  color: #2d8ad9;
  font-weight: 700;
  padding: 5px 12px;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  background-color: white;
  transition: all linear 0.2s;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}
.widgets a:hover {
  color: white;
  transform: scale(1.08);
  background: rgb(140, 56, 181);
  background: linear-gradient(
    90deg,
    rgba(140, 56, 181, 1) 0%,
    rgba(45, 138, 217, 1) 100%
  );
}
/* Secondary Stores and Widgets Ends */

/* Media Query Starts */

@media (max-width: 1024px) {
  .secondarySec {
    display: none;
  }
  .primarySec {
    width: 100%;
    margin: 0;
  }
}

/* For screens less than or equal to 991px */
@media (max-width: 991px) {
}

/* For screens less than or equal to 768px */
@media (max-width: 768px) {
}

/* For screens less than or equal to 640px */
@media (max-width: 640px) {
  .sbImage {
    height: 300px;
  }

  .sbText h3 {
    font-size: 2.1rem;
  }
}

/* For screens less than or equal to 560px */
@media (max-width: 560px) {
  /* Styles for 560px */
}

/* For screens less than or equal to 480px */
@media (max-width: 480px) {
  .sbImage {
    height: 200px;
  }

  .sbText h3 {
    font-size: 2rem;
  }
  .sbText p {
    font-size: 1.4rem;
  }
}

/* For screens less than or equal to 320px */
@media (max-width: 320px) {
  /* Styles for 320px */
}
