*{
  margin: 0;
  padding: 0;
  color: #333;
  text-decoration: none;
}

html{
  scroll-behavior: smooth;
  overflow: auto;
}

body {
  overflow: hidden;
  font-family: serif;
  line-height: 1.6rem;
  background: #cecece;
}

header{
  animation: .8s cubic-bezier(0.170, 0.935, 0.305, 1.000) header forwards;
}

header h1{
  animation: .8s cubic-bezier(0.170, 0.935, 0.305, 1.000) header_h1 forwards;
}

#header_h1.active a{
  color: #333;
}

#nav_toggle {
  animation: .8s cubic-bezier(0.170, 0.935, 0.305, 1.000) nav_toggle forwards;
}


article{
  margin: 5rem auto;
  padding: 3.5rem 0;
  background: #fff;
}

h2{
  margin: 3rem auto;
  letter-spacing: 4px;
}

.newsFlex{
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.newsFlex div{
  width: 49%;
  height: 250px;
  background: #EF9CCD;
}

.newsFlex div::after{
  content: "";
  width: 50%;
}

.newsFlex div p{
  width: 96%;
  line-height: 1rem;
  display: block;
  margin: 0 auto;
  font-size: 10px;
  letter-spacing: 0;
  color: #fff;
}

.newsFlex div p::after{
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  display: inline-block;
  transform: rotate(45deg);
}

#newsSugarAndCoffee{
  margin: 14px auto;
}

@media screen and (min-width: 600px) {

  #navigation{
    animation: .8s cubic-bezier(0.170, 0.935, 0.305, 1.000) navigation forwards;
  }

  .newsFlex div{
    width: 31%;
    height: 300px;
    background: #EF9CCD;
  }

  .newsFlex div::after{
    content: "";
    width: 33%;
  }

  #newsSugarAndCoffee{
    margin: 6px auto;
  }

}

@media screen and (min-width: 1024px) {

  .newsFlex{
    width: 70%;
  }

  .newsFlex div{
    width: 23%;
    height: 250px;
    background: #EF9CCD;
  }

  .newsFlex div::after{
    content: "";
    width: 33%;
  }

  #newsSugarAndCoffee{
    margin: 10px auto;
  }

}
