body {
    background-color: #f5f5dc;
    font-family: monospace;
    margin: 0;
    padding: 0;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-container {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    max-width: 800px;
}

.main-title {
    font-family: 'Amatic SC', cursive;
    font-size: 160px;
    color: #000;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 4px;
    animation: float 3s ease-in-out infinite;
    line-height: 1;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.font-loaded .main-title {
    opacity: 1;
}

.subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    color: #333;
    margin-top: 20px;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.font-loaded .subtitle {
    opacity: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.stories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

.story-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.story-link {
    color: #000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    height: 100%;
}

.story-title {
    font-size: 1.4em;
    position: relative;
}

.story-title::after {
    content: "→";
    position: relative;
    display: inline-block;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.story-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.story-item:hover .story-title::after {
    opacity: 1;
    transform: translateX(0);
}

.story-description {
    color: #333;
    font-size: 1.1em;
}

.story-description::before {
    content: "* ";
}

@media (max-width: 768px) {
    .stories-list {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.github-footer {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.1em;
    color: #333;
}

.footer-text a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #000;
}

.footer-text a:hover .author-avatar {
    border-color: rgba(0, 0, 0, 0.2);
}

.github-icon {
    fill: currentColor;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: middle;
    margin-right: 4px;
}

.author-name {
    font-size: 1em;
    color: #333;
} 