nav {
  position: absolute;
  right: 0;
  display: flex;
}
a {
  text-decoration: none;
  color: rgb(149, 20, 57);
  padding: 15px;
  float: left;
}
a:hover {
  background-color: rgb(255, 255, 255);
}

body {
  margin-top: 10%;
}

.main-header {
  background-color: rgb(86, 184, 181);
  padding-left: 10px;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 50px;
}

.header-info {
  text-align: left;
  color: rgb(165, 109, 203);
  padding: 0px;
  margin: 14px;
  position: absolute;
  left: 0px;
}

* {
  color: #87c641;
  border-color: #87c641;
  font-family: "Roboto", sans-serif;
}

h1 {
  background-color: rgb(171, 228, 230);
  font-size: x-large;
  width: full;
  height: auto;
  font-family: "Caprasimo", cursive;
  color: rgb(240, 248, 255);
  text-decoration: underline;
}

body {
  background-color: #fffff7;
}
.center {
  text-align: center;
}

.fancy {
  text-shadow: 2px 2px 3px green;
}

img {
  width: 600px;
  height: 400px;
  border-radius: 40px;
  border: #87c641 5px solid;
}

h2 {
  font-family: "Courier New", Courier, monospace;
  font-style: italic;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.dropdown {
  display: flex;
  flex-direction: column;
}

.dropdown-content {
  display: none;
}

.dropdown:hover .dropdown-content {
  display: block;
  position: absolute;
  top: 100%;
  background-color: antiquewhite;
}

.dropdown-item:hover {
  background-color: whitesmoke;
  cursor: pointer;
}
a.dropdown-item {
  min-width: 160px;
  text-align: left;
}

li.dropdown-item:hover a.dropdown-item {
  text-align: left;
  color: gainsboro;
}

.items {
  display: flex;
  justify-content: center;
}
.item {
  background-color: gainsboro;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.portrait {
  max-width: 100%;
  max-height: 100%;
}
.item h3,
p {
  text-align: center;
  padding: 5px;
  color: steelblue;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.tab {
  background-color: gainsboro;
  width: 400px;
  padding: 40px;
  margin: 20px;
  border-radius: 20px;
}
h1.name {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: black;
}

h2.price {
  font-size: 38px;
  color: black;
}
.list {
  list-style-type: disc;
  margin-bottom: 50px;
  text-align: left;
}
.list li {
  margin-top: 20px;
  color: black;
}
hr {
  height: 7px;
  width: 80%;
  margin: auto;
  background-color: rgb(74, 209, 184);
  border: none;
  border-radius: 50px;
  margin-top: 20px;
}

button {
  background-color: rgba(75, 219, 161, 0.616);
  border-radius: 8px;
  color: white;
  padding: 8px;
  border: none;
  font-size: 20pt;
}
button:hover {
  transform: skew(20deg, 30deg);
  background-color: rgb(219, 85, 75);
}

div.about {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 30px;
  background-color: blanchedalmond;
  width: 80%;
}
.about {
  text-align: left;
  color: black;
  padding: 10px;
  width: 100%;
}
div.image-about {
  margin-bottom: auto;
  margin-top: auto;
}
img.about-us {
  max-width: 100%;
  max-height: 100%;
}

footer {
  background-image: linear-gradent(rgb(252, 232, 204), rgb(197, 141, 137));
}
.main-footer {
  display: flex;
  justify-content: center;
  width: 100%;
}
.left-footer {
  margin-right: auto;
  margin-left: 40px;
}
.right-footer {
  margin-left: auto;
  margin-right: 40px;
}
.center-footer {
  margin-left: 20px;
  margin-right: 20px;
}
.info-left {
  color: rgb(219, 84, 75);
  text-align: left;
  width: 100%;
}

.info-right {
  color: rgb(219, 84, 75);
  text-align: right;
  width: 100%;
}
.info-center {
  color: rgb(219, 84, 75);
  text-align: center;
  width: 100%;
  padding-top: 5px;
  border-top: 1px solid rgb(146, 168, 133);
}
