body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
h1{
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
header{
  background-color: #FCEA58;
}

ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#navbar {
    height: 70px;
    width: 100%;
    background: var(--bg-nav);
    color: var(--text);
}

#navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
}
a{
  color: white;
}


.dark-mode {
  background-color: var(--gray4);
  color: white;
}
.tabel-dark{
   background-color: var(--gray6);
   color: white;
}
.hover-dark{
   background-color: var(--gray3);
   color: black;
}



:root {
    --gray0: #f8f8f8;
    --gray1: #dbe1e8;
    --gray2: #b2becd;
    --gray3: #6c7983;
    --gray4: #454e56;
    --gray5: #2a2e35;
    --gray6: #12181b;
    --blue:  #0084a5;
    --purple: #a82dd1;
    --yellow: #fff565;
}



/* Logo Animation */


@keyframes color-rotate {
    from {
        filter: hue-rotate(0deg);
    }
    to {
        filter: hue-rotate(360deg);
    }
}


header:hover {
    animation: color-rotate 1s;
    animation-iteration-count: infinite; 
    animation-direction: alternate;
}
 












table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 2px solid;
}

th,
td {
  text-align: left;
  padding: 8px;
}


#BTC{
  text-align: center;
   margin: 20px;
  height: 200px;
  width: 90%;
  border-radius: 20px;
  background: #e0e0e0;
  box-shadow: 19px 19px 32px #d0d0d0, -19px - 19px 32px #f0f0f0;
  transition: 0.5s all ease-in-out;
}
img {
  margin-top: 5px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
}
#BTC:hover{
  transform: scale(1.1);
}
















.footer-dark {
  padding:50px 0;
  color:#f0f9ff;
  background-color:#282d32;
}

.footer-dark h3 {
  margin-top:0;
  margin-bottom:12px;
  font-weight:bold;
  font-size:16px;
}

.footer-dark ul {
  padding:0;
  list-style:none;
  line-height:1.6;
  font-size:14px;
  margin-bottom:0;
}

.footer-dark ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.6;
}

.footer-dark ul a:hover {
  opacity:0.8;
}

@media (max-width:767px) {
  .footer-dark .item:not(.social) {
    text-align:center;
    padding-bottom:20px;
  }
}

.footer-dark .item.text {
  margin-bottom:36px;
}

@media (max-width:767px) {
  .footer-dark .item.text {
    margin-bottom:0;
  }
}

.footer-dark .item.text p {
  opacity:0.6;
  margin-bottom:0;
}

.footer-dark .item.social {
  text-align:center;
}

@media (max-width:991px) {
  .footer-dark .item.social {
    text-align:center;
    margin-top:20px;
  }
}

.footer-dark .item.social > a {
  font-size:20px;
  width:36px;
  height:36px;
  line-height:36px;
  display:inline-block;
  text-align:center;
  border-radius:50%;
  box-shadow:0 0 0 1px rgba(255,255,255,0.4);
  margin:0 8px;
  color:#fff;
  opacity:0.75;
}

.footer-dark .item.social > a:hover {
  opacity:0.9;
}

.footer-dark .copyright {
  text-align:center;
  padding-top:24px;
  opacity:0.3;
  font-size:13px;
  margin-bottom:0;
}
