
body {
  background-color:#FFDFC7;
  color: #FFB3DC;
  font-family:"Courier New";
  margin:0;
  }
  .container {
  display: grid;
  grid-gap: 10px;
  grid-template:
    "header header"
    "sidebar main"
    "footer footer"
    / 100px 1fr;
}
header { grid-area: header; }
aside { grid-area: sidebar; }
main { grid-area: main; }
footer { grid-area: footer; }

.align-left {
  float: left;
  margin-right: 15px; /* Important to keep text from touching the image */
  margin-bottom: 5px;
}

header{
  grid-area: header;
  font-size:2em;
   border-radius:round-borders;
  background: #DBA4A4;
   }
  .heaader content {
    padding:2em;
  }
  
  .header-title {
  font-family: "Courier New"
  font-size: 2em;
  font-weight: bold;
  }
  
  
  #content{
    display:flex;
    gap:20px
  }
  
  nav{
    width:200px;
    background-color: #FFADAD;
    padding:15px;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ffff;
  }
  nav a {
  color: #ff00ff;
  text-decoration: none;
  display: block;
  margin: 10px 0;
  font-weight: bold;
  transition: 0.3s;
}
nav a:hover {
  color: #00ffff; 
  text-shadow: 0 0 10px #00ffff;
}

main {
  flex: 1;
  background-color: #56b3b8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px #56b3b8;
}
.image.container{
  position: relative;
  display: inline-block;

  






  
