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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Amatic SC', cursive;
}

body {
    font-size: 24px;
    line-height: 1.6;
    background-color: #ff0000;
    color: #5e0e0e;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.title {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.topic-list a {
    background-color: #fff;
    color: #5e0e0e;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 28px;
    border: 3px solid #5e0e0e;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.topic-list a:hover {
    background-color: #fdd;
    transform: scale(1.03);
}

.back-link {
    margin-top: 40px;
    display: block;
    text-decoration: none;
    font-size: 28px;
    color: #5e0e0e;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 24px;
    text-align: left;
    font-size: 26px;
}
