
body {
  background-color: darkslateblue;
  color: white;
  font-family: 'Courier New', Courier, monospace;
}

a {
  color: turquoise;
}

header {
  
  display: flex;
  justify-content: center;
  margin: auto;
  background-color: brown;
  padding: 10px;
  max-width: 1101px;

}

main  {

  display: flex;
  justify-content: center;


}

.aside-left {

  width: 200px;
  background-color: blueviolet;
    
  
}

.aside-right {

  background-color: blue;
  width: 200px;
  text-align: center;

}

.navigation {

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 200px;
  margin: 0%;
  padding: 0%;
  text-align: center;
  background-color: black;
  list-style: none;


}

#title {

  display: flex;
  margin: auto;
  padding: 20px;
  background-color: cadetblue;
}



#update {

  background-color: aqua;
  width: 700px;
  height: 700px;
  border: none;
  padding: 10px;

}

.center {
  
  background-color: crimson;
  width: 700px;
  margin: auto;

}

.Foot {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}

