/*!
* LICENSE - style only: CC BY-NC-SA
* @link https://creativecommons.org/licenses/by-nc-sa/3.0/
* Graphics copyright of AbdulMatin Alayande-Nuhu
* 
* Title: 1950s Newspaper
* Author: AbdulMatin Alayande-Nuhu
* Website: N/A
* Twitter: @N/A
*
* View on Style Stage:
* @link https://stylestage.dev/styles/1950s-newspaper/
*/

*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*--------------------GLOBAL START--------------------*/
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        -webkit-animation: none !important;
                animation: none !important;
        -webkit-transition: none !important;
        transition: none !important;
    }
}

a,
a:active{
  color: blue;
  text-decoration: none;
}

p{
  margin-bottom: 20px;
  padding: 9px;
}

body{
  background-image: url(https://raw.githubusercontent.com/AlayandeWork/NewspaperStyleSheet/main/bac.jpeg);
  font-family:Georgia, 'Times New Roman', Times, serif;
}

#main >.container a:hover,
header a:hover,
#styles >.container a:hover,
.profile >.container a:hover,
#contribute >.container a:hover,
#contribute > .container:nth-of-type(2) ol li a:hover{
  background-color: black;
  color: white;
}

/*--------------------GLOBAL END--------------------*/





/*--------------------SKIP LINK START----------------------*/

.skip-link{
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.skip-link{
  color: #ece8dc;
  background-color: #302b1f;
  width: 20%;
  padding: 10px;
  text-decoration: none;
}

.skip-link:hover{
  background-color: #fcfcf2;
  color: #302b1f;
}

/*--------------------SKIP LINK START----------------------*/





/*--------------------HEADER SECTION START--------------------*/

header{
  padding: 2px;
  margin:10px ;
  border-top: 7px solid black;
}

header .container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header h1{
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-transform: uppercase;
  font-size: 6.0em;
  letter-spacing: 0.1em;
}

header h2{
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-size: 1rem;
  margin: 0;
}

header p {
  font-size: 1em;
  margin: 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header a{
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .container .link-github {
  background: white;
  color: black;
  padding: 10px 20px;
  border: 2px solid #333;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
}

header .container .link-github:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*--------------------HEADER SECTION START--------------------*/








/* --------------------GITGUB SVG ROTATION START--------------------*/
.link-github svg {
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.link-github:hover svg{
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* --------------------GITGUB SVG ROTATION END--------------------*/







/* --------------------NAVIGATION START--------------------*/
nav {
  border-bottom: 5px dotted #503d2e;
  border-top: 2px solid #503d2e;
  padding: 10px;
  margin: 10px;
}

nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

nav a{
  text-decoration: none;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
}

nav a:hover{
  color: grey;
}

nav li {
  margin: 15px;
}

/* --------------------NAVIGATION END--------------------*/







/*--------------------MAIN START--------------------*/
main{
  width: 60%;
  margin: 0 auto;
}

article{
  margin-bottom: 40px;
}


#main .container #about .container{
  margin: 10px;
}

main >.container h2,h3{
  margin-bottom: 5px;
}

main .container h3{
  font-size: 1.5em;
}

blockquote {
  border-left: 4px solid #ddd;
  padding: 10px 20px;
  margin: 20px 0;
  background: rgb(80,61,46);
}

blockquote p {
  color: white;
  font-style: italic;
  text-align: justify;
}

blockquote a,
blockquote a:visited,
blockquote a:hover,
blockquote a:active {
  text-decoration: none;
  color: #6CB6FF; 
}


/*--------------------MAIN END--------------------*/








/*--------------------ABOUT START--------------------*/
#about{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: justify;
}

#about > .container:nth-of-type(1) {
  height: auto;
  width: 50%;
  border: 1px solid black;
}

#about > .container:nth-of-type(1) h2{
  font-size: 1.7em;
  color: #fcfcf2;
  padding: 8px;
  background-color: #302b1f;
  border-bottom: 1px solid black;
}

#about > .container:nth-of-type(1) blockquote{
  margin: 9px;
}

#about > .container:nth-of-type(2){
  height:auto;
  width: 50%;
  border: 1px solid black;
}

#about > .container:nth-of-type(2) h2{
  font-size: 1.7em;
  color: #fcfcf2;
  padding: 8px;
  background-color: #302b1f;
  border-bottom: 1px solid black;
  
}

#about > .container:nth-of-type(2) > ul li:hover {
  background-color: black;
  color: white;
}

#about > .container:nth-of-type(2) > ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  
}

#about > .container:nth-of-type(2) > ul li {
  font-size: 16px; 
  color: #302b1f; 
  list-style:none;
  margin: 2px;
  padding: 3px;
  border-radius: 8px;
  background-color: #ece8dc;
}

/*--------------------ABOUT END--------------------*/









/*--------------------GUIDELINES START--------------------*/

#guidelines{
  width: auto;
  text-align: justify;
}

#guidelines > .container:nth-of-type(1) {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 10px;
  width: auto;
  border: 1px solid black;
}

#guidelines > .container:nth-of-type(1) a,h3{
  padding: 8px;
}

#guidelines > .container:nth-of-type(1) h2 {
  font-size: 1.7em;
  color: #fcfcf2;
  padding: 8px;
  background-color: #302b1f;
  border-bottom: 1px solid black;
}

/*--------------------GUIDELINES END--------------------*/








/*--------------------CONTRIBUTE START--------------------*/
#contribute > .container:nth-of-type(1) h2 {
  font-size: 1.7em;
  color: #fcfcf2;
  padding: 8px;
  background-color: #302b1f;
  border-bottom: 1px solid black;
}

#contribute{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: justify;
}

#contribute > .container:nth-of-type(2) h3 {
  font-size: 1.7em;
  color: #fcfcf2;
  padding: 8px;
  background-color: #302b1f;
  border-bottom: 1px solid black;
}


#contribute > .container:nth-of-type(2) ol li{
  list-style: none;
  margin: 4px;
  padding: 9px;
  text-align: start;
  color: #302b1f;
  background-color: #ece8dc;
  font-size: 0.9em;
}

#contribute > .container:nth-of-type(2) ol li a:active,
#contribute > .container:nth-of-type(2) ol li a{
  text-align: end;
  color: blue;
  font-size: 1em;
}

#contribute > .container:nth-of-type(1) {
  height: auto;
  margin: 10px;
  width: 30%;
  border: 1px solid black;
}

#contribute > .container:nth-of-type(2) {
  height: auto;
  margin: 10px;
  width: 40%;
  border: 1px solid black;
}

#contribute > .container:nth-of-type(1) {
  height: auto;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  
}

#contribute > .container:nth-of-type(1) p{
  height: auto;
  margin: 10px;
  color: #302b1f;
  background-color: #ece8dc;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

/* #contribute >.container a{
  color: blue;
  text-decoration: none;
} */

#files{
  height: auto;
  margin: 10px;
  width: 30%;
  border: 1px solid black;
  text-align: justify;
}


#files .container a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #302b1f;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ece8dc;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 8px;
}

#files > .container:nth-of-type(1) h3 {
  font-size: 1.7em;
  color: #fcfcf2;
  padding: 8px;
  background-color: #302b1f;
  border-bottom: 1px solid black;
  margin-bottom: 42px;
}


/*--------------------CONTRIBUTE END--------------------*/






/*--------------------PROFILE SECTION START--------------------*/

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 8px;
}

#profile-title{
  color: #fcfcf2;
  padding: 8px;
  font-size: 2em;
  background-color: #302b1f;
}


.profile > .container:nth-last-of-type(1){
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile > .container:nth-last-of-type(1) ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  
}

.profile > .container:nth-last-of-type(1) ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 12px;
  color: #302b1f;
  background-color: #ece8dc;
  padding: 12px;
  list-style: none;
  text-decoration: none;
  
}

/*--------------------PROFILE SECTION END--------------------*/







/*--------------------STYLES SECTION START--------------------*/
#styles{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


#styles > .container:nth-last-of-type(1) ul li{
  margin: 12px;
  color: #302b1f;
  text-align: center;
  background-color: #ece8dc;
  padding: 12px;
  list-style: none;
  text-decoration: none;
}

#styles > .container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#styles > .container:nth-last-of-type(1) h2{
  font-size: 2em;
  color: #fcfcf2;
  padding: 8px;
  background-color: #302b1f;
}
/*--------------------STYLES SECTION END--------------------*/





/*--------------------FOOTER START-------------------*/
.page-footer {
  margin: 10px;
  background: #333;
  border-top: 1px solid #ddd;
  padding: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  opacity: 0.9;
  text-align: center;
  padding: 40px;
}

.page-footer p, .page-footer ul {
  margin: 0;
  padding: 0;
  color: white;
}

.page-footer a {
  color: lightblue;
  text-decoration: none;
}
.page-footer >.container p a:nth-of-type(1):hover,
.page-footer >.container p a:nth-of-type(2):hover,
.page-footer >.container p a:nth-of-type(3):hover,
.page-footer >.container p a:nth-of-type(4):hover{
  color: black;
  background-color: white;
  text-decoration: none;
}

.page-footer .link-rss{
  color: black;
  text-transform: uppercase;
}

.page-footer .link-support{
  color: black;
  text-transform: uppercase;
}

.page-footer .link-twittercontact{
  color: black;
  text-transform: uppercase;
}

.page-footer p a:hover {
  color: grey; 
  text-decoration: underline; 
}


.page-footer ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-footer li {
  margin: 0 15px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 13px;
  background-color: white;
}

.page-footer li:hover{
  cursor: pointer;
}

footer.page-footer .link-github {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black; 
  text-decoration: none;
}

footer.page-footer .link-github svg {
  fill: black; 
  vertical-align: middle;
  margin-right: 8px; 
}

/*--------------------FOOTER END--------------------*/






/*--------------------RESPONSIVENESS START--------------------*/

/* DESKTOP */
@media (max-width: 1800px) and (min-width: 1200px){
  header .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  
  .page-footer {
    padding: 20px;
    text-align: center;
  }

  .page-footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .page-footer li {
    margin: 10px 0;
    padding: 10px 20px;
  }

  header h1 {
    font-size: 6em;
  }
  
  .profile > .container:nth-last-of-type(1){
   
    display: -webkit-box;
   
    display: -ms-flexbox;
   
    display: flex;
    margin: 15px;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
  }

  main {
    width: 60%;
  }

  #about > .container,
  #contribute > .container,
  #files {
    width: 30%;
  }

  .profile > .container,
  #styles > .container {
    width: 49%;
  }
}

/* TABLETS */
@media (max-width: 1199px) and (min-width: 768px) {

  header .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  

  nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  nav li {
    margin: 5px 0;
  }
  .page-footer {
    padding: 20px;
    text-align: center;

  }

  .page-footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .page-footer li {
    margin: 10px 0;
    padding: 10px 20px;
  }

  #contribute{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  #contribute > .container:nth-of-type(1) {
    height: auto;
    margin: 10px;
    width: auto;
    border: 1px solid black;
  }

  .profile > .container:nth-last-of-type(1) ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    
  }
  
  .profile > .container:nth-last-of-type(1){
   
    display: -webkit-box;
   
    display: -ms-flexbox;
   
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 15px;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
  }

  #about > .container:nth-of-type(1) {
    height: auto;
    width: auto;
    border: 1px solid black;
  }
  
  #about > .container:nth-of-type(2){
    height:auto;
    width: auto;
    border: 1px solid black;
  }
  
  #contribute > .container:nth-of-type(2) {
    height: auto;
    margin: 10px;
    width: auto;
    border: 1px solid black;
  }

  header h1 {
    font-size: 4em;
  }

  header h2 {
    font-size: 0.9rem;
  }

  main {
    width: 90%;
  }
  #about{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  #about > .container,
  #files {
    width: auto;
    margin: 10px 0;
  }

  .profile > .container,
  #styles > .container {
    width: 100%;
    margin: 15px 0;
  }
}

/* MOBILE DEVICES */
@media (max-width: 767px) {

  header h1 {
    font-size: 3em;
  }

  header h2 {
    font-size: 0.8rem;
  }

  #contribute{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contribute > .container:nth-of-type(1) {
    height: auto;
    margin: 10px;
    width: auto;
    border: 1px solid black;
  }
  
  #contribute > .container:nth-of-type(2) {
    height: auto;
    margin: 10px;
    width: auto;
    border: 1px solid black;
  }
  nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  nav li {
    margin: 5px 0;
  }
  #files{
    height: auto;
    margin: 10px;
    width: auto;
    border: 1px solid black;
  }
  
  main{
    width:90%;
  }

  #about > .container:nth-of-type(1) {
    height: auto;
    width: auto;
    border: 1px solid black;
  }  

  #about{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .profile > .container:nth-last-of-type(1) ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    
  }
  
  .profile > .container:nth-last-of-type(1){
   
    display: -webkit-box;
   
    display: -ms-flexbox;
   
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 15px;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
  }
  #about > .container:nth-of-type(1) {
    height: auto;
    width: auto;
    border: 1px solid black;
  }
  
  #about > .container:nth-of-type(2){
    height:auto;
    width: auto;
    border: 1px solid black;
  }
  
  
  header .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  
  .page-footer {
    padding: 20px;
    text-align: center;
  }

  .page-footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .page-footer li {
    margin: 10px 0;
    padding: 10px 20px;
  }
}

/*--------------------RESPONSIVENESS END--------------------*/
