body {
  color: black;
  background-color: white;
  font-size: 30px;
}

.center {
 margin-left: auto;
 margin-right: auto;
  text-align: center;
  font-size: 18px;
  border-style: double;
  border-width: 25px;
  border-color: blue green violet red;
}

.name {
  color: DarkMagenta;
  padding: 10px;
}

.div.gallery {
  margin: 5px;
  width: auto;
  border: 2px solid black;
  float: right;
}

div.gallery:hover {
  border: 2px solid red;
}

div.gallery img {
  display: block;
  width: auto;
  height: 600px;
  float: center;
}

.main {
  text-align: center;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: green;
  width: 30%;
  float: right;
}
.link {
  float: right;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  background-color: #111;
}

.footer {
  background-color: palevioletred;
  padding: 45px;
  text-align: center;
  color: white;
  float: center;
}
