/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

h1 {
    color: #333333;
    font-size: 24px;
    margin-bottom: 20px;
}

.link-list {
    list-style-type: none;
    padding: 0;
}

.link-list li {
    margin: 10px 0;
}

.link-list a {
    text-decoration: none;
    color: #1e90ff;
    font-size: 18px;
    transition: color 0.3s;
}

.link-list a:hover {
    color: #ff4500;
}
