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

body {
    font-family: "DM Sans", sans-serif;
    font-size: 21px;
    line-height: 1.5;
    background: #6b9898;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Main Header */
.main-header {
    font-size: 40px;
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items: center;
}

.header-padding {
    padding-top: 20vh;
}

.header-icon-bar {
    border: 3px solid black;
}

.icon-bar {
    width: 10%;
    height: 10%;
    display: flex;
    justify-content: left;
    align-items: left;
    flex-wrap: wrap;
    padding: 10px 10px;

}

.icon-divider {
  flex-basis: 100%; /* Forces the next item onto a new line */
  height: 0;         /* Keeps the line break element invisible */
  border-bottom: 1px solid black;
  margin: 0px;
}

.header-shadow { 
    border-radius: 10px;
    border: 1px solid black;
    width:60%;
    display: flex;
    flex-wrap: wrap;
    background: black;
}

.header-box {
    width:98.5%;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid black;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}

.header-text { 
    padding: 40px 40px;
    width:100%;
    min-width: 0; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.text-break {
  flex-basis: 100%;
  height: 0;
}


/* Bottom Navbar */
.navbar {
    padding: 20px;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .main-menu ul {
    display: flex;
    column-gap: 2em;
}

.navbar-background {
    display: block;
    font-weight: 600;
    width: 200px;
    transition: 0.5s;
    background: black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}

.navbar ul li a {
    padding: 15px;
    display: block;
    font-weight: 600;
    width: 200px;
    transition: 0.5s;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Utility Classes */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Top Navbar */

.top-navbar {
    padding: 20px;
    padding-bottom: 0px;
    margin: 20px;
    margin-left: 50px;
    margin-right: 50px;
}

.top-navbar ul {
    display: flex;
    justify-content: space-between;

}

.top-navbar ul li a {
    padding: 15px;
    padding-bottom: 0px;
    display: block;
    font-weight: 600;
    width: 200px;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-divider {
  border-bottom: 1px solid black;
  margin-left: 95px;
  margin-right: 95px;
}


/*Blog post panels*/

.blog-header-txt {
    color: #e0f4f4;
    font-size: 38px;
    margin-left: 95px;
    margin-top: 10px;
    display: flex;
}

.post-list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 95px;
    margin-right: 95px;
}

.post-list ul {
    width:100%
}

.post-list h4 {
    font-size: 35px;
    padding-bottom: 1px;
    margin-bottom: 1px;
}

.post-list h5 {
    font-size: 23px;
    margin-bottom: 5px;
}

.post-list p {
    font-size: 21px;
}

.post-list ul li a {
    padding: 15px;
    display: block;
    font-weight: 600;
    transition: 0.5s;
    background: #92b2b2;
    border-radius: 10px;
    display: flex;
    justify-content: left;
    align-items: left;
    margin-right: 5px;
    margin-bottom: 30px;
    color: #e0f4f4;
    height: 200px;
}

.post-elements {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
}

.post-title-divider {
  border-bottom: 2px solid #e0f4f4;
  width: 250px;
}

/* Blog post page elements */

.post {
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction:column;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 25px;
}

.post-title {
    color: #e0f4f4;
    font-size: 42px;
}

.post-metadata {
    color: #e0f4f4;
    font-size: 16px;
}

.post-content {
    color: #e0f4f4;
    font-size: 20px;
    font-family:'Times New Roman', Times, serif;
    margin-top: 10px;
    background-color: #92b2b2;
    padding: 15px;
    border-radius: 10px;
}

/*About me page elements*/

.about-img {
  margin: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img img {
    height: 333px;
    width: 428px;
}


.about-title {
    color: #e0f4f4;
    font-size: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    color: #e0f4f4;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-left: 100px;
    margin-right: 100px;
}