body{
    margin: 0;
    background-color: #00532c;
}
.header {
    position: sticky;
    top: 0;
    padding: 25px 16px;
    background: #1f1f1f;
    color: #f1f1f1;
    position: relative;
    
}
.logo {
    position: absolute;
    top: -40px;
    right: 15px;
    width: 150px;
    height: auto;
}

.headerbtn {
    color: #ffffff;
    text-decoration: none;
    font-family: "Sekuya", system-ui;
    font-weight: 400;
    font-style: normal;
}
.headerbtns {
    display: flex;
    place-content: center;
    gap: 20px;
}
.mainLabel{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Cairo Play", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "slnt" 0;
    color: white;
    font-size: 20px;
}
.mytik{
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 30px;
    color: white;
    

}
.tikcard {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 300px;
    padding: 15px;
    background-color: #1f1f1f;
    border-radius: 20px;
    transition: 0.3s;
    
}
.tikcard:hover{
    transform: scale(1.06);
    transition: 0.3s;
}
.tikuser{
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.tiktok {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.share{
    margin-right: 2%;
    flex-wrap: wrap;
    font-family: "Handjet", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 30px;
    font-style: normal;
    font-variation-settings:
      "ELGR" 1,
      "ELSH" 2;
}
@media (max-width: 768px) {
    .logo {
        width: 80px;  
        top: 8px;
        right: 10px;
    }
    .mainLabel{
        font-size: 9px;
    }
}


@media (max-width: 480px) {
    .logo {
        width: 60px;
    }
    .mainLabel{
        font-size: 8px;
    }
    .tikcard{
        width: 90%;
    }
}