/* 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." */

/*  background-color: #EEF1F6; */

#profile-pic {
  width:125px;
  border: 1px solid #ccc;
  padding: 3px;
  }

body {
  min-height: 100vh;
  background-image:url("2 pixel.png");
  background-color:#286B84;
  font-family: Arial;
  margin:0;
}

.head {
  background-color:#316382;
  color:white;
  box-sizing: border-box;
  padding: 20px;
  margin: auto;
  border-bottom:1px solid black;
  box-shadow: inset 0 1px 0px rgba(255,255,255,0.3), inset 0 -1px 0px rgba(0,0,0,0.3);

}
  
.inner-body {
  width: 820px;
  border:1px solid black;
  background-color: #D86447;
  height: 93vh;
  box-sizing: border-box;
  margin: auto;
  box-shadow: 10px 7px 15px 0 rgba(0, 0, 0, 0.3), 3px 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.section-title {
      font-family: arial, sans-serif;
    font-size: 14px;
        font-weight: bolder;
  border-bottom:1px solid black;
  border-top:1px solid black;
  color:white;
  background-color: #2C5E7F;
  box-shadow:
    inset 0 1px 0px rgba(255,255,255,0.3)/*,
    inset 0 -1px 0px rgba(0,0,0,0.3)*/;
  margin-top:0px;
  padding:4px;
  padding-left:5px;
  
}

.main-content {
  width: 97%;
  margin: auto;
  background-color:white;
  padding-bottom: 20px;
  font-family:Verdana;
  border:1px solid black;
  border-top:0px solid black;
  
  }
  
p {
  padding-left: 10px;
  }
  
.media {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding:10px;
}

.media-img {
  width: 125px;
  height: auto;
  border: 1px solid #ccc;
  padding: 3px;
  border-radius: 10px;
}

.media-content {
  flex: 1;
  min-width: 0;
}

.nav {
  display: flex;
  width:75%;
  margin:auto;
}

.nav_link {
  flex: 1;
  margin:0 10px 10px 10px;
  text-align: center;
  font-size:12px;
  padding: 2px;
  text-decoration: none;
  font-weight: bold;
  color:white;
  border: 1px solid black;
  background: #316382;
  box-shadow: inset 0 1px 0px rgba(255,255,255,0.3), inset 0 -1px 0px rgba(0,0,0,0.3);
  border-radius: 0 0 7px 7px;
  border-top: 0px;
}

.nav_link:hover {
  box-shadow: inset 0 1px 0px rgba(0,0,0,0.3), inset 0 -1px 0px rgba(255,255,255,0.3);
  background: #215372;  
}

footer {
  position: fixed;
  bottom: 0;
  width: 820px;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
  
  