*{
    margin: 0;
    padding: 0;
}

body{
    background-color: black;
    font-family: 'Inria Serif', serif;
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 100%;
}


.price-card{
    background-color: #313131;
    width: 70vh;
    height: 50vh;
    position: absolute;
    bottom: 18vh;
    border-radius: 5px;
    text-align: left;
    font-weight: 600;
    border: 3px solid #C67C38;
    color: white;
    letter-spacing: 2px;
}

.price-card table{
  width: 100%;
  height: 100%;
}

.price-card table tr td{
  border-bottom: 1px solid #C67C38;
  border-top: 1px solid #C67C38;
  padding: 3px;
}

td:nth-child(2) {
	white-space: nowrap;
}

.fade-in {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}

.tableContainer {
  overflow: auto;
}
.table {
  position: sticky;
  top: 0;
  width: 100%;
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
}}


@media screen and (max-width: 800px) {
  .profile-container{
    width: 40vh;
  }

  .nav{
    width: 350px;
    top: 120px;
}
#line{
  width: 85%;
  position: absolute;
  top: 100px;
  background-color: #B7B2BD;
  height: 3px;
  border-radius: 5px;
}

#burgpng{
  width: 150px;
  position: absolute;
  top: 0;
  text-align: center;
}

.nav li{
    margin: 5px;
}

.price-card{
  width: 40vh;
  height: 48vh;
}

}



