/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

h3 {
    text-align: left;
    font-size: 10;
    font-weight: bold;
}

body {
    font-family: Arial, sans-serif;
    background-color: #05090a;
    margin: 0;
    padding: 0;
    display: flex;
}

.side-menu {
    width: 300px;
    background-color: #181818;
    color: #fff;
    padding: 20px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.side-menu-content {
    text-align: left;
    margin-top: 100px;
}

.side-menu-links {
    margin-top: 50px;
    margin-left: 15%;
}

.side-menu h1 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.side-menu h2 {
    font-size: 18px;
    font-weight: normal;
    margin-top: 10px;
    text-align: center;
}

.side-menu p {
    font-family: Arial, Helvetica, sans-serif;
    color: #dbdbdb;
    font-size: 16px;
    margin-top: 20px;
    text-align: justify;
}

.social-media-link {
    width: 25%;
    margin-right: 10px;
}

.grid {
    margin-left: 340px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.grid-item {
    background-color: #181818;
    border: 1px solid #181818;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto;
}

.description {
    /* display: none; */
    margin-top: 10px;
    font-size: 16px;
    text-align: left;
    color: #e9e9e9;
    background-color: #181818;
    padding: 20px;
}

/* Media Query for mobile devices */
@media screen and (max-width: 767px) {
    .side-menu {
        display: none; /* Hide the sidebar on smaller screens */
    }

    .grid {
        margin-left: 20px; /* Adjust margin for better alignment on smaller screens */
    }

    .grid-item {
        max-width: calc(100% - 40px); /* Ensure grid items take full width on smaller screens */
        margin-bottom: 20px; /* Adjust margin for better spacing */
    }

    .grid-item img {
        max-width: 100%;
    }

    .description {
        margin-top: 10px;
        font-size: 16px;
        text-align: left;
        color: #e9e9e9;
        background-color: #181818;
        padding: 20px;
    }
}