*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 1500;
}

html{
    
    height: 100%;
    width: 100%;
    position: absolute;
    background-size: cover;
}

body{
    background: url("s.jpg");
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10px);
    background-size: cover;
}

#copybtn{
    background: #2b9b0d;
    color: white;
    
    font-family: 'Space Grotesk', sans-serif;
    height: 80px;
    width: 280px;
    border-radius: 10px;
    border: none;
    margin: 40px auto;
}

#votebtn{
    background: #f00;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    height: 40px;
    width: 98%;
    border-radius: 5px;
    border: none;
    margin: 10px auto;
    font-size: 20px;
    font-weight: bold;
}

#box h2{
    margin: 10px;
}

#box input{
    width: 98%;
    padding: 5px;
    height: 40px;
    outline: none;
    border: #202020;
    font-size: 18px;
    margin: 5px auto;
}

#box label{
    margin: 5px;
}

#box{
    display: flex;
    flex-direction: column;
    color: white;
    width: 90%;
    background: #171717;
    padding: 10px;
    margin: 10px auto;
    border-radius: 10px;
}

#box p{
    margin: 10px 5px;
}

#mainh1{
    width: 280px;
    color: white;
    text-align: center;
    margin: 100px auto;
    margin-bottom: 10px;
    font-weight: 1500;
}


nav{
    width: 100%;
    height: 70px;
    background: rgb(0,0,0,0.4);
    padding: 0px 5px;
    align-items: center;
    justify-content: space-between;
    display:  flex;
}

#dc{
    background: #0084ff;
    border: none;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    height: 50px;
    width: 120px;
    font-size: 20px;
    font-weight: 1000;
    border-radius: 5px;
    margin-right: 5px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    display: flex;
}

#logo{
    width: 60px;
    height: 60px;
    background: url("logo.png");
    background-size: cover;
}

section{
    background: #121212;
   padding: 10px 0;
}

section h1{
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}

#rank-box {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        flex-direction: column;
        margin-top: 20px;
    }

    .rank-card {
        width: 420px;
        padding: 20px;
        border-radius: 12px;
        background: #070707;
        color: white;
        box-shadow: 0 0 10px #0f0f0f;
        border: 2px solid #333;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .rank-card h2 {
        font-size: 45px;
        margin-bottom: 10px;
        font-weight: 1000;
        text-align: center;
        color: #00ff9d;
         font-family: 'Space Grotesk', sans-serif;
    }

    .rank-card p {
        font-size: 14px;
        margin-bottom: 15px;
        color: #cccccc;
    }

    .buy-btn {
        padding: 10px 20px;
        background: #00ff6a;
        color: black;
        font-weight: bold;
        border: none;
        border-radius: 8px;
        cursor: pointer;
         font-family: 'Space Grotesk', sans-serif;
        transition: 0.2s;
    }

    .buy-btn:hover {
        background: #00cc55;
    }