    body {
      margin: 0;
      padding: 0;
      height: 200vh; /* for scroll effect */
      background-color: #f3e3dc;
    }
/* This begings the nav bar which is a glass effect
    .glass-navbar {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 95%;
      max-width: 1000px;
      padding: 15px 30px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
      z-index: 1000;
    }

    .nav-logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .nav-links a {
      margin: 0 15px;
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #e0e0e0;
    }

    main {
      margin-top: 120px;
      padding: 40px;
      color: white;
    }
    this ends the glass nav bar*/

/*This is the layout for a blog website*/
 * {
  box-sizing: border-box;
}

/* Header/Blog Title */
.header {
  font-family: 'Cinzel Decorative', serif;
  padding: 30px;
  font-size: 4rem;
  text-align: center;
  color:#F5B8BE;
  position: relative;
  background:rgb(48, 61, 59);
  text-shadow: px 3px 4px #302110;
}
.header p{
  font-size: medium;
}
/*this is the end for the header section*/

/* Style the navigation bar */
.navbar {
  overflow: hidden;
  background-color:#011627;
  display:flex;
  justify-content: center;
  gap: 20px;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: #F5B8BE;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-family: 'Cinzel Decorative', serif;
  font-size: 16px;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #795663;
  color: #011627;
}
/*this is for the drop won menu and contect.*/
.dropdown {
  float:left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: #F5B8BE;
  padding: 14px 16px;
  background-color: #011627;
  font-family: 'Cinzel Decorative', serif;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #795663;
  color: #011627;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/*This is to style the back to top button*/
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #795663;
  color: #011627;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #F5B8BE;
}
/*This is the end of back to top styling.*/

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
   background-color: rgb(138, 150, 136);
   padding: 20px;
   margin-top: 20px;
   color:#302110;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background-color:#011627;
  color: #F5B8BE;
  margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}
/*this is the ending for the css for the blog layout*/