@import url('https://fonts.googleapis.com/css2?family=Jersey+10&family=Lilex:ital,wght@0,100..700;1,100..700&family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
    font-family: "Lilex", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
}

main {
    max-width: 1000px;
    width: 100%;
    padding: 20px 0;
}

h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    font-size: 1rem;
}

a {
    color: #007BFF;
}

code {
    cursor: pointer;
    background-color: whitesmoke;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.95rem;
}

ul {
    padding-left: 20px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}

hr {
    border: 0;
    border-top: 1px solid lightgray;
    margin: 30px 0;
}

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

    p, li {
        font-size: 0.95rem;
    }

    code {
        font-size: 0.9rem;
    }
}