body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
}

.linktree-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.link-list a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

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