body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #1c1c1c;
    color: #B8860B;
}

.container {
    text-align: center;
}

a.link {
    display: inline-block;
    width: 300px;
    margin: 10px;
    padding: 10px 20px;
    background-color: #B8860B;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

a.link:hover {
    background-color: #DAA520;
}

.cat {
    width: 150px;
    height: auto;
    position: absolute;
    left: 30px;
    bottom: 100px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #1c1c1c;
    border-top: #B8860B50 1px solid;
    color: #B8860B;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: #DAA520;
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cat {
        width: 50px !important;
        top: 200px !important;
    }
}
