@font-face {
    font-family: 'PixelGameFont';
    src: url('../fonts/chary___.ttf') format('truetype');
}

* {
    font-family: 'PixelGameFont';
    font-size: 25px;
}

body {
    margin: 0;
    background-color: #10002B;
    color: #F0ECE5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header {
    background-color: #3C096C;
    /* padding: 20px; */
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 36px;
    color: #E0AAFF;
    margin: 0;
}

.srs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.sr {
    background-color: #3C096C;
    border: 2px solid #5A189A;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out, background-color 0.3s ease;
}

.sr:hover {
    transform: scale(1.03);
    background-color: #5A189A;
}

.sr h2 {
    font-size: 24px;
    color: #E0AAFF;
    margin-bottom: 10px;
}

.sr p {
    font-size: 18px;
    color: #F0ECE5;
}

.by {
    background-color: #7B2CBF;
    color: #F0ECE5;
    border: none;
    /* padding: 10px 15px; */
    border-radius: 5px;
    text-decoration: none;
    display: block;
    width: 100%;
    line-height: 50px;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
    /* margin-top: 10px; */
}

.by:hover {
    background-color: #E0AAFF;
}

footer {
    /* position: fixed; */
    bottom: 0;
    width: 100%;
    text-align: center;
    /* background-color: #3C096C; */
    color: white;
    padding: 10px;
}
  ::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #0a0a10
}

::-webkit-scrollbar-thumb {
    background-color: #8000ff
}
