body {
    background-color: #000;
    color:#00ff00;
    font: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

header, nav, main, footer {
    padding: 10px;
    text-align: center;
}

h1,h2,h3,h4,h5,h6 {
    clear: both;
}

h2 {
    font: 18px 'OpenSansLight',Arial,sans-serif;
    margin-bottom: 2px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
    font-size:16px;
}

a:link, a:visited, a:active {
    color:#666;
    text-decoration: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}
.card:hover {
    transform: scale(1.05);
}
.card-content {
    padding: 15px;
}
.card-content h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}
.card-content p {
    font-size: 0.9em;
    color: #555;
}
.repo-link {
    display: inline-block;
    margin-top: 10px;
    color: #0077ff;
    text-decoration: none;
    font-weight: bold;
}
.repo-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    nav ul {
        display: flex;
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }
}

@font-face {
  font-family: 'Open Sans';
  src: url('fonts/FiraCode-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
