@import url('https://fonts.googleapis.com/css2?family=Rubik+Moonrocks&family=Rubik+Vinyl&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Iso&display=swap');



body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.language-prompt {
    text-align: center;
    padding: 20px;
    padding-bottom: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.language-prompt p {
    font-family: 'Rubik Mono One', monospace;
    margin: 0;
}

button {
    font-family: 'Rubik Mono One', monospace;
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 767px) { 
    .language-prompt {
        width: auto;
        margin: 10px;
    }
}
