/* Header Style */
title{font-size: 4.5em;}

/* Nav-bar styling*/
#nav-bar {
    font-size: 2em;
    font-family:'Trebuchet MS';
}

.nav-button {
    padding-left: 5%;
    padding-right: 5%;
    background-color: rgb(221, 218, 218);
    border-radius: 20px;
    margin: 20px;
    width: 50px;
    font-family: 'Trebuchet' serif;
    color: rgb(242, 238, 238);
    text-decoration:solid;
    font-weight: bold;
}


header {
  background: rgb(221, 218, 218);
  color: #fff;
  padding: 1rem;
  text-align: center;}

body {
    background-color: #ececf1;
    padding-left: 5%;
    padding-right: 5%;
  }

  h1 {
    font-size: 3.5em;
    color:#353773;
    font-family: Impact, sans-serif;
    text-decoration: solid;
    border:2px;
  }  

  h2 {
    font-size: 1.75em;
    color: #353773;
    font-family: 'Trebuchet MS', sans-serif;
    font-weight: lighter;
  }

  h3{
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
  }

  p { position:static, bottom; 
    color:#353773;
    margin-bottom: 2%;}
   

/* Desktop-orientation*/
#content {
    width: 100%;
    margin: auto;
}

/*Phone-orientation*/

@media (orientation: portrait) 
   { #content
     {width:100%;}
}

/* Column division*/
.flex-container {
    display: flex;
    gap: 20px;
}

.column {
    width: 50%;
/* Each column takes up 50% of the container width */
}

/* Social icons styling created with help from co-pilot */
.social-icons {
    margin: 1rem 0;
  }
  
  .social-icons a {
    display: inline-block;
    margin: 0 10px;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
  }

/* Footer Style */
 footer {
    background: rgb(221, 218, 218);
    color: #0b0a0a;
    padding: 0.5em;
    text-align: center;
    position: bottom;
    width: 100%;
  }
    /*code health and open div tags were rectified with the help of Co-pilot*/