@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-color: #e8dbc5ff;
    --background-color: #fff4e9ff;
    --card-background: #ffffff;
    --card-hover-background: #f0f4f8;
    --link-hover-color: #ff6347;
}

body {
    font-family: "Oswald", sans-serif;
    color: var(--secondary-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: auto;
}
nav {
    background-color: var(--primary-color);
    color: var(--text-color);
    height: 5vh;
    display: flex;
    align-items: center;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    width: 100%;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
}

/* Main content styling */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 20px auto;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

/* Add grid styles */
#repo-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#repo-list li {
    background-color: var(--card-background);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#repo-list li:hover {
    transform: translateY(-5px);
}

#repo-list li a {
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}