/* STYLE SECTIONING TAGS */
body {
  background-color:  #2c2e58;
  margin: 20px;
}

.div-inline {
  display: flex;
  align-items: center;
  background-color: #394374;
  padding: 20px;
  border-radius: 10px;
}

.parallax {
  /* The image used */
  background-image: url("assets/parallax.png");
  /* width: 90%;
  height: auto; */

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-blog {
  background-color: #394374;
  padding: 20px;
  border-radius: 10px;
}
/* STYLE TEXT */

h1 {
  color: #fffdeb;
  font-family: 'Georgia', Georgia, monospace;
  text-align: center;
  font-size: 50px;
}

.title{
  margin-top: 300px;
}

.title:hover{
  color:  #ffe5eb;
}

h2 {
  color: #fffdeb;
  font-family: 'Georgia', Georgia, monospace;
  /* text-align: center; */
  font-size: 20px;
  padding: 5px;
  /*ffe5eb*/
}

p {
  color: #fffdeb;
  font-family: 'Lato', Lato, monospace;
  /* text-align: center; */
  font-size: 20px;
}

.phome {
  text-align: center;
}

/* STYLE IMAGES */
img {
  border-radius: 10px;
  width: 50%;
  /* max-width: 300px; */
  height: auto;
  margin-left: 20px;
}

/* STYLE NAV BAR */
ul {
  list-style-type: none;
  background-color:  #fffdeb;
  padding: 8px;
  /* margin: 10px */
}

.right {
  float: right; /* how do i put less space between the icons sobbing */
}

li {
  display: inline;
}

li a {
  color: #2c2e58;
  text-decoration: none;
  font-family: 'Georgia', Georgia, monospace;
  font-size: 20px;
  padding: 5px;
}

li a:hover {
  text-decoration: underline overline;;
}

.icon {
  width: 25px;
  height: 25px;
}