/* Extra small devices (phones, 450px and down) */
@media only screen and (max-width: 450px) {
    .content{
      width: 90%
    }
    .font{
     font-size: 0.65rem;
   }
}

/* Extra small devices (phones, 450px and up) */
@media only screen and (min-width: 450px) {
  .content{
    width: 80%
  }
  .font{
     font-size: 0.7rem;
   }
}

/* small devices (phones, 540px and up) */
@media only screen and (min-width: 540px) {
  .content{
    width: 85%
  }

  .font{
    font-size: 0.75rem;
   }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .font{
   font-size: 0.8rem;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .font{
   font-size: 0.9rem;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .font{
   font-size: 1rem;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .fixed, header, navbar, .content{
    width: 1000px;
  }

  .font{
   font-size: 1.1rem;
  }
}
