
h1,p{
    text-align: center;
}
img{
    width:30%;
    margin-left:auto;
    margin-right:auto;
    display:block;
}
.main-header{
    background-color: 
    rgb(245, 228, 204);
    position: fixed;
    top:0;
    right:0;
    left:0; 
    height: 48px;
}
.header-info{
    text-align:left;
    color: rgb(219,84,75);
    position:absolute;
    left:0;
    padding:0;
    margin: 14px 14px 0 14px;
}

.header-info a{
    padding:0;
    text-decoration: none;
}

.header-info a:hover{
    background-color: transparent;
}
nav {
    position: absolute;
    right: 0;
    display: flex;
  }
  
  a {
    text-decoration: none;
    color: rgb(219, 84, 75);
    padding: 15px;
    float: left;
  }
  
  a:hover {
    background-color: burlywood;
  }

  .jumbotron{
    margin-top: 5%;
  }
.title {
    font-style: italic;
    color: rgb(0, 0, 0);
}
h1, h2, h3, p {
    text-align: center;
    color: rgb(0, 0, 0);
    padding: 5px;
}
.items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.item {
    display: flex;
    flex-direction: column;
    margin:10px;
    background-color: beige;
}
.portrait {
  max-width: 100%;
  max-height: 350px;
}
img.portrait {
    width: 300px;
    height: 350px;
  border: 20px solid rgb(250, 235, 233);
  border-radius: 8px;
  box-shadow: 5px 5px 5px darkgray;
}
img:hover{
  opacity:0.5;
}
body{
  background-image: url("Asssets/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
table{
  border-collapse: separate; 
  border: solid 2px burlywood; 
  width: 50%; 
  margin-right: auto; 
  margin-left: auto;
  background-color: antiquewhite;
  border-radius: 20px;
  border-spacing: 0px;
}
tr, td, th{
  
  padding: 20px;
}
tr:nth-child(odd){
  background-color: rgb(239, 215, 184);
}
tr:hover{
  background-color: rgb(236, 152, 146);
}

table th:not(:last-child),
table td:not(:last-child) {
 border-right: 1px solid black;
}
.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.tab{
  background-color: rgb(218, 215, 211);
  width: 250px;
  padding: 40px;
  margin: 20px;
  border-radius: 20px;
/*  display: flex;
  justify-content: center;*/
}
h1.name {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: rgb(38, 38, 38);
}
h2.price {
  font-size: 38px;
  color: rgb(32, 32, 32);
}

.list {
  list-style-type: disc;
  margin-bottom: 50px;
  text-align: left;
}

.list li {
  margin-top: 20px;
  color: rgb(33, 33, 33);
}

hr {
  height: 7px;
  width: 80%;
  margin: auto;
  background-color: rgb(178, 159, 135);
  border: none;
  border-radius: 50px;
  margin-top: 20px;
}
button{
  background-color: rgb(178, 159, 135, 0.616);
  border-radius: 8px;
  color:white;
  border: none;
  font-size: 20pt;
  margin-right: 20;
  margin-left: 100;
}
button:hover{
  transform: scale(1.2, 1.2);
  background-color: rgb(178, 159, 135);
  cursor: pointer;
}
div.about{
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 30px;
  background-color:rgb(178, 159, 135) ;
  width: 80%;
}
.about{
  text-align: left;
  color:white;
  padding: 10px;
  width:100%;
}
div.image-about{
  margin-bottom: auto;
  margin-top: auto;
}
image.about-us{
  width: 300px;
}
footer {
  background-image: linear-gradient(rgb(252, 
  232, 204), rgb(176, 142, 140));
}

.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(162, 112, 108);
  text-align: left;
  width: 100%;
}
.info-right {
  color: rgb(177, 126, 122);
  text-align: right;
  width: 100%;
}

.info-center {
  color: rgb(185, 123, 119);
  text-align: center;
  width: 100%;
  padding-top: 5px;
  border-top: 1px solid rgb(146, 168, 133);
}
.fa-map-marked-alt, .fa-user, .fa-phone-alt, .fa-instagram{
  margin: 6px;
  color: rgb(36, 29, 28);
}
.header{
  background-image: linear-gradient(to right, rgb(252, 
  232, 204), rgb(220, 157, 153));
}
@media (max-width: 600px) {
  * {
      font-size: 2vw;
      margin: 2px;
    }
}