@import "styles/2000s.css";

body, h1, p, a {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 40px; 
    color: #ffcc00;
    margin-bottom: 10px;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.year-card {
    display: block;
    background-color: #333;
    color: #ffcc00;
    padding: 20px;
    border-radius: 10px;
    font-size: 24px; 
    text-decoration: none;
    transition: 0.3s;
    font-family: 'VT323', sans-serif;
}

.year-card:hover {
    background-color: #ffcc00;
    color: #333;
}

/* 푸터 */
footer {
    margin-top: 50px;
    font-size: 13px; 
}

.meme-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.meme-card {
    display: block; /* 링크 영역을 카드 전체로 확장 */
    background-color: #222;
    color: #ffcc00;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
    text-decoration: none; /* 링크 밑줄 제거 */
}

.meme-card h2 {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.meme-card:hover {
    transform: scale(1.1);
    background-color: #ffcc00;
    color: #222;
}
