* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Winky Rough';
    src: url('WinkyRough-Regular.ttf') format('truetype');
}

body {
    font-family: 'Winky Rough', sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #9C27B0;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #E0E0E0;
}

main {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1F1F1F;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #333;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

ul li a {
    display: block;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    text-align: center;
    transition: background-color 0.3s;
}

ul li a:hover {
    background-color: #9C27B0;
}

footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #E0E0E0;
}

footer a {
    color: #9C27B0;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.9rem;
    }

    ul li a {
        font-size: 1rem;
    }
}
