@import url('https://fonts.cdnfonts.com/css/micro-n56');

body {
    background-color: black;
    color: white;
    font-family: 'microN56', sans-serif;
}

.container {
    text-align: center;
    max-width: 500px;
    margin: auto;
    margin-top: 200px;
}

.container p {
    font-size: 40px;
}

.desc {
    font-weight: 700;
    margin-top: 100px;
}

.p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.center-container p {
    font-size: 16px;
}

.center-container {
    text-align: center;
    max-width: 500px;
    margin: auto;
}

.purple
    color: #920F0F;
}

.footer {
    position: fixed;
    bottom: 0;
    padding: 20px;
    background-color: transparent;
    border-top: 1px solid #0f0f0f;
    font-weight: 550;
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.click-button {
    color: #811b13;
    text-decoration: dashed;
}

/* Responsive @media */
@media (max-width: 426px) {
    .container p {
        font-size: 25px;
    }

    .desc p {
        font-size: 10px;
    }

    .footer {
        position: fixed;
        bottom: 0;
        padding: 20px;
        background-color: transparent;
        border-top: 1px solid #0f0f0f;
        font-weight: 550;
        height: 35px;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 5px;
    }

    .footer a {
        font-size: 8px;
    }

    .footer p {
        font-size: 8px;
    }
}
