/* 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 {
  width: 800px;
  margin: auto;
  text-align: left; 
  background-color: rgb(10, 10, 10);
  color: white;
  font-family: sans-serif;
  font-size: 1.2rem;
}

.container {
  display: grid;
  grid-template-areas:
    "header header"
    "sidebar content"
    "footer footer";
  grid-template-columns: 1fr 6fr;
  gap: 20px;
}

main {
  grid-column: 2;
  grid-row: 2;
}

/* h1 {

} */

p {
  color: white;
}

header{
    font-size: 24px;
    text-align: center; 
    grid-area: header;
    grid-column: 1 / 6;
    grid-row: 2;
    padding-bottom: 50px;
    padding-top: 50px;
    border-bottom: 1px solid white;
}

h2{
    font-size: 26px;
}

footer{
    font-size: 16px;
    color: grey;
    text-align: center; 
    grid-column: 1 / 6;
    grid-row: 3;
    grid-area: footer;
    padding-top: 20px;
    border-top: 1px solid white;
}

aside{
  margin-top: 50px;
  line-height: 0.5;
  font-size: 16px;
  grid-area: sidebar;
  grid-column: 1;
  grid-row: 2;
  border-right: 1px solid white; 
}

a{
   text-decoration: none;
   color: rgb(100, 160, 242);
}

a:hover {
        text-decoration: underline;
        color: white;
    }

.box {
  float: left;
  padding-right: 10px;
}    
    
table {
  margin-left: 200px;
  margin-right: 200px;
  text-align: center;
  background: rgb(50, 50, 50);
  color: white;
  border: 5px solid blue;
}
         
li {
  text-align: left;
}
         
span {   
  background: white;
  border: 1px solid black;
}

.chirp {
  border: 2.5px solid white; 
  border-radius: 20px;
  padding: 0.5rem;
}