/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: Helvetica;
}

#mainheader {
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 20px;
    text-align: center;
    letter-spacing: 36px;
    font-size: 36px;
    margin: auto;
    max-width: 400px;
    padding-right: 140px;
}

#contentheader {
    max-width: 450px;
    max-height: 700px;
    border-radius: 25px;
    border-style: solid;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 150px;
    overflow: scroll;
    margin: auto;
}

#entry {
    max-width: 650px;
    max-height: 700px;
    border-radius: 25px;
    border-style: solid;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 150px;
    overflow: scroll;
    margin: auto;
}

a {
    color: #ff6833;
    text-decoration: underline;
}

#articletitle {
    color: #ff6833;
}

a:hover {
  color: #ffb499;
}

#date {
    text-align: left;
    font-style: italic;
    margin-top: 20px;
    margin-bottom:20px;
    color: #ffb499;
}

#pictext {
    text-align: center;
    font-style: italic;
    font-size: 10px;
}

ul {
  list-style-type: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  max-width: 450px;
  display: flex;
  justify-content: center
}

li {
  float: left;
}

li a {
  display: block;
  color: #ff6833;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  background-color: #111;
}

#entrypic img {
  max-width:250px;
}

#entrypic2 img {
  max-width:150px;
}

#footer {
    margin-top: 25px;
    text-align: center;
    font-style: italic;
    font-size: 10px;
}

/*============================================================================== 
iPhone X || 375 x 812 || Default, Portrait and Landscape
================================================================================ */
@media only screen and (min-width: 375px) 
and (max-width: 812px){ 
    #contentheader{max-width:auto;}
    #mainheader{max-width:auto; font-size: 0.5em;}
}

@media only screen and (min-width: 375px) 
and (max-width: 812px) and (orientation: portrait) { 
    #contentheader{max-width:auto;}
    #mainheader{max-width:auto; font-size: 0.5em;}
}

@media only screen and (min-width: 375px) 
and (max-width: 812px) and (orientation: landscape) { 
    #contentheader{max-width:auto;}
    #mainheader{max-width:auto; font-size: 0.5em;}
}
#