body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background-color: #121212;
}
canvas#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}
header, section {
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    background-color: #1e1e1e;
}
h1, h2 {
    color: #00d1b2;
}
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.about img {
    border-radius: 50%;
    flex-shrink: 0;
}
.about div {
    flex: 1;
}
.social-links {
    margin-top: 20px;
    text-align: center;
}
.social-links img {
    width: 40px;
    margin: 0 5px;
}
#name {
    text-align: left;
}
#privacypolicy {
    text-align: right;
    font-size: 15px;
}
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th, .table td {
    border: 1px solid white;
    padding: 10px;
    text-align: left;
}
.cards {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: white #1e1e1e;
}
.cards::-webkit-scrollbar {
    height: 10px;
}
.cards::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 10px;
}
.cards::-webkit-scrollbar-track {
    background: #1e1e1e;
}
.card {
    min-width: 300px;
    background-color: #2e2e2e;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}
.card img {
    width: 100%;
    border-radius: 10px;
}
.card a {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #00d1b2;
    text-decoration: none;
    font-size: 0.9em;
}
.tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.tag {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #00d1b2;
    color: #121212;
    font-size: 0.9em;
}
a{
    color: #fff;
    padding: 0 10px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(49, 170, 226) 50%);
    background-position: 0 0;
    background-size: 200% auto;
    transition: .3s;
}
a:hover{
    background-position: -100% 0;
    color: #fff;
}
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        align-items: center;
    }
    .social-links {
        text-align: center;
    }
    #name {
        text-align: center;
    }
}