body {
    background-color: #1d1d1d;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Lexend', sans-serif;
}

.top {
    position: fixed;
    width: 100%;
    background: linear-gradient(143deg, rgb(28, 32, 61) 0%, rgb(19, 19, 19) 56%);
    padding: 6px;
    box-shadow: rgba(22, 22, 22, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    z-index: 1000;
    color: #6a49ff;
        height: 45px;
    font-family: Lexend;
    font-weight: bold;
    cursor: default;
}

#aboutme::before {
  content: '';
  display: block;
  height: 100px;
  margin-top: -100px;
}


.top img {
    height: 45px;
    width: auto;
    vertical-align: middle;
    cursor:default;
}

.top:hover {
    color: rgb(255, 255, 255);
}

.hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.hero-image img {
    width: 110%;
    height: auto;
    padding-top: 57px;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    font-family: 'Lexend', sans-serif;
    z-index: 2;
    max-width: 80%;
}



.hero-overlay {
    position: absolute;
    top: 57px; 
    left: 0;
    width: 100%;
    height: calc(100% - 57px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero-text h1 {
    font-size: 2rem;
    margin: 0;
}


@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.4rem;
    }
}

.herobutton {
    background-color: white;
    border:none;
    padding:7px;
    scroll-behavior: smooth;
    border-radius: 5px;
}

.main {
    padding-top:30px;
    align-items: center;
    text-align: center;
    color:white;
    padding-left:8px;
    padding-right:8px
}


.card  {
    background-color: #0f0f0f;
    border-radius: 30px;
    filter: drop-shadow(1px 0px 6px #3326af96);
    padding-bottom:1px;
    padding-top:10px;
    flex: 1 1 200px;
    max-width: 150px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}


.card img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}


.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 20px;
}

a {
    text-decoration: none;
    color: rgb(145, 91, 252);
}

a:hover {
    color:rgb(189, 149, 246);
}

.social {
    background-color: #0f0f0f;
    color:white;
    border:none;
    padding:10px;
    border-radius: 40px;
}

.plugin-card {
    background-color: #1d1d1d;
    border: 2px solid #242424;
    border-radius: 20px;
    overflow: hidden;
    width: 300px;
    margin: 20px auto;
    color: white;
    font-weight: bold;
    box-shadow: rgb(0, 0, 0) 0px 5px 10px;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plugin {
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.plugin img {
    vertical-align: middle;
    max-height: 70px;
    border-radius: 15px;
    margin-right: 10px;
}

.plugin-description {
    margin-top: 10px;
}

.description-text {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.star-rating {
    font-size: 18px;
    color: rgb(255, 217, 0);
}

.star {
    margin: 0 2px;
}

@media (max-width: 600px) {
    .plugin-card {
        width: 250px; 
        padding: 15px;
    }

    .plugin {
        font-size: 16px;
    }

    .plugin img {
        max-height: 50px; 
    }

    .description-text {
        font-size: 13px;
    }

    .star-rating {
        font-size: 16px; 
    }
}


.responsive {
  width: 100%;
  max-width: 650px;
  box-shadow: rgb(0, 0, 0) 0px 5px 10px;
  border-radius: 10px;
  height: auto;
}