Earth Day, 50 years of global environmental awareness

Earth Day, celebrating more than 50 years of global environmental awareness By Johani Carolina Ponce / Huella Zero Every April 22, the world comes together in a celebration that transcends borders and cultures: Earth Day. What began as a modest national initiative in the United States, proposed by Senator Gaylord…

Earth Day, celebrating more than 50 years of global environmental awareness

By Johani Carolina Ponce / Huella Zero

Every April 22, the world comes together in a celebration that transcends borders and cultures: Earth Day. What began as a modest national initiative in the United States, proposed by Senator Gaylord Nelson in September 1969, has evolved into a global movement that passionately advocates for the preservation of the environment and the promotion of sustainability.

Awakening of environmental awareness

The turning point that triggered this commemoration dates back to a crucial moment in history, the year 1969, when American public opinion was shaken by shocking environmental incidents. In January of that year, a disastrous oil spill on a platform off the coast of Santa Barbara, California, deeply shocked the nation, followed later by the alarming Cuyahoga River Fire in Cleveland during the summer. These events, widely reported by the media, raised a collective consciousness about the urgent need to protect our environment.

A day for action

The culmination of this growing concern took place on April 22, 1970, when 20 million people joined together in a historic demonstration in support of environmental causes, taking to the streets and parks in an unprecedented gesture of solidarity.

This momentous act not only marked the beginning of the modern environmental movement, but also influenced significant political changes. Under the Richard Nixon administration, the United States Congress created the Environmental Protection Agency and enacted the Clean Air Act in 1970, establishing a crucial legal framework for environmental protection in the country.

Evolution and global reach

Over the years, Earth Day has gained greater relevance and reach on a global level. In 1990, its 20th anniversary inspired renewed interest and greater participation in environmental activities, while Senator Nelson, recognized as the architect of this celebration, was honored with the Presidential Medal of Freedom in 1995 for his tireless work on behalf of the environment.

Commitment to the future

The commitment to environmental protection has led to more ambitious actions in subsequent years. In 2007, activists rallied at the US Capitol to demand drastic cuts in greenhouse gas emissions, with the goal of reducing them by 80% by 2050 compared to 1990 levels.

Earth Day has also seen international milestones in the fight against climate change. In March 2016, the United States and China issued a joint statement on climate change, culminating in the signing of the Paris Agreement on the following Earth Day, a historic pact that represents a global commitment to address climate change and transition towards a low carbon economy.

Platform for expression

In more recent years, Earth Day has served as a platform for expressing concerns about environmental and energy policies. In 2017, the first “March for Science” took place, a nonpartisan demonstration that brought together scientists and their supporters on the National Mall in Washington, D.C.

Earth Day not only celebrates the birth of the modern environmental movement, but also serves as a reminder of our collective responsibility to protect and preserve our only known home, planet Earth.

Related posts

A person wearing a pink blouse holds a pink breast cancer awareness ribbon, emphasizing the importance of early detection and self-exams during Breast Cancer Awareness Month.

Breast Cancer Awareness Month: The Importance of Early Detection and Self-Exams

<?php

global $post;

// Obtén el ID del post actual
$post_id = $post->ID;
// Obtén el contenido del post
$post_content = get_post_field( 'post_content', $post_id );

// Calcula el tiempo de lectura estimado en minutos y segundos
$word_count = str_word_count( strip_tags( $post_content ) );
$reading_time_minutes = floor( $word_count / 200 );
$reading_time_seconds = ceil(($word_count / 200 - $reading_time_minutes) * 60);

// Muestra el tiempo de lectura estimado en minutos y segundos
echo '<p class="read_time">Reading Time: ' . $reading_time_minutes . ':' . $reading_time_seconds . ' min</p>';

?>

Breast Cancer Awareness Month: The Importance of Early Detection and Self-Exams October is Breast Cancer Awareness Month, a time dedicated to raising awareness about the impact of breast cancer and…

View post
Aerial view of a coastal neighborhood devastated by Hurricane Helene reveals the impact of climate change. Debris, including broken wood and roofing, is scattered across the area. Houses show visible damage. The ocean looms in the background with several palm trees lining the area.

Study suggests climate change may have exacerbated Hurricane Helene’s impact

<?php

global $post;

// Obtén el ID del post actual
$post_id = $post->ID;
// Obtén el contenido del post
$post_content = get_post_field( 'post_content', $post_id );

// Calcula el tiempo de lectura estimado en minutos y segundos
$word_count = str_word_count( strip_tags( $post_content ) );
$reading_time_minutes = floor( $word_count / 200 );
$reading_time_seconds = ceil(($word_count / 200 - $reading_time_minutes) * 60);

// Muestra el tiempo de lectura estimado en minutos y segundos
echo '<p class="read_time">Reading Time: ' . $reading_time_minutes . ':' . $reading_time_seconds . ' min</p>';

?>

Study suggests climate change may have exacerbated Hurricane Helene’s impact Experts see likely increase in annual global proportion of Category 4 or 5 tropical cyclones By Huella Zero The devastating…

View post
sheryl-boldt-headshot

Would you be voted off the island?

<?php

global $post;

// Obtén el ID del post actual
$post_id = $post->ID;
// Obtén el contenido del post
$post_content = get_post_field( 'post_content', $post_id );

// Calcula el tiempo de lectura estimado en minutos y segundos
$word_count = str_word_count( strip_tags( $post_content ) );
$reading_time_minutes = floor( $word_count / 200 );
$reading_time_seconds = ceil(($word_count / 200 - $reading_time_minutes) * 60);

// Muestra el tiempo de lectura estimado en minutos y segundos
echo '<p class="read_time">Reading Time: ' . $reading_time_minutes . ':' . $reading_time_seconds . ' min</p>';

?>

Would you be voted off the island? By Sheryl Boldt If your life and relationships were decided at the voting booth, would your family want you to run for another…

View post
<script>
  /*Source: https://github.com/Krzysztof-Antosik/Two-direction-Sticky-Sidebar*/
  
  // Verificar el ancho de pantalla al cargar y redimensionar
  function checkScreenWidth() {
    if (window.innerWidth <= 767) {
      // Si la pantalla es menor o igual a 676px, no ejecutar el código
      return;
    }

    const stickyElement = document.querySelector('.fb-sidebar__aside');
    const startPosition = stickyElement.getBoundingClientRect().top;

    let endScroll = window.innerHeight - stickyElement.offsetHeight - 500;
    let currPos = window.scrollY;
    let screenHeight = window.innerHeight;
    let stickyElementHeight = stickyElement.offsetHeight;
    let topGap = 40;
    let bottomGap = 40;

    setTimeout(() => {
      if (stickyElement.hasAttribute('data-top-gap')) {
        const dataTopGap = stickyElement.getAttribute('data-top-gap');
        topGap = dataTopGap === 'auto' ? startPosition : parseInt(dataTopGap);
      }

      if (stickyElement.hasAttribute('data-bottom-gap')) {
        bottomGap = parseInt(stickyElement.getAttribute('data-bottom-gap'));
      }
    }, 100);

    stickyElement.style.position = 'sticky';
    stickyElement.style.top = `${topGap}px`;
    stickyElement.style.height = 'fit-content';

    function positionStickySidebar() {
      endScroll = window.innerHeight - stickyElement.offsetHeight - bottomGap;
      const stickyElementTop = parseInt(stickyElement.style.top.replace('px', ''));

      if (stickyElementHeight + topGap + bottomGap > screenHeight) {
        if (window.scrollY < currPos) {
          if (stickyElementTop < topGap) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop >= topGap && stickyElementTop !== topGap) {
            stickyElement.style.top = `${topGap}px`;
          }
        } else {
          if (stickyElementTop > endScroll) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop < endScroll && stickyElementTop !== endScroll) {
            stickyElement.style.top = `${endScroll}px`;
          }
        }
      } else {
        stickyElement.style.top = `${topGap}px`;
      }
      currPos = window.scrollY;
    }

    function stickyElementToMe() {
      stickyElement.style.top = `${topGap}px`;
    }

    function updateSticky() {
      screenHeight = window.innerHeight;
      stickyElementHeight = stickyElement.offsetHeight;
      positionStickySidebar();
    }

    setTimeout(() => {
      window.addEventListener('resize', () => {
        currPos = window.scrollY;
        updateSticky();
      });

      document.addEventListener('scroll', updateSticky, {
        capture: true,
        passive: true
      });
    }, 1000);
  }

  // Verificar el ancho de pantalla al cargar y redimensionar
  window.addEventListener('load', checkScreenWidth);
  window.addEventListener('resize', checkScreenWidth);
</script>