*{
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}
html,body{overflow-x: hidden;}
body {
  font-family: system-ui, 'Segoe UI', sans-serif;
  background-color: rgb(238, 236, 234);
  padding-top: 90px;
  padding-bottom: 100px;
}

/* ----------------- main hare webpage -------------------*/

 #ticker-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    color: #111;
    padding: 10px 0;
    box-sizing: border-box;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1000;
  }
  #crypto-ticker {
    display: inline-flex;
    gap: 40px;
    padding-left: 16px;
    animation: scroll-left 25s linear infinite;
  }
  #ticker-wrapper:hover #crypto-ticker {
    animation-play-state: paused;
  }
  @keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

.header-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  position: fixed;
  top:38px;
  right: 0;
  left: 0;
  height: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  background-color: rgb(238, 236, 234);
  z-index: 100;
}

.logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.logo-container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}

.company-name{font-size: 16px;}

.hero-logo{
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.hero,
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero h1{
  font-size: 18px;
}
a{text-decoration: none;}
.hero {flex-direction: column; padding: 20px; justify-content: center;}


.connect-wallet-button{
  background-color: white;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  color: blueviolet;

  &:hover{
    opacity: 0.6;
  }
  &:active{
    opacity: 1;
  }
}

.nav-links{
  margin-bottom: 20px;
  justify-content: flex-start;
}

.nav-links a{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  width: 120px;
  height: 60px;
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  color: purple;
  transition: all 0.3s ease;

  &:hover{
    opacity: 0.6;
  }
  &:active{
    opacity: 1;
  }
}
.nav-links-container {
  display: flex;
  justify-content: center;
}
footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.2);
  padding-top: 20px;
}
.copyright-info {
  margin-left: 20px;
}
.social-media-links{
  margin-right: 20px;
}

@media (max-width:375px){
  .hero h1{
  font-size: 16px;
}
}