body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "outfit";
}


.code-section {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ccc;
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
    width: 800px;
    height: 500px;
    /* text-align: center; */
}


.options label {
    font-family: "poppins";
    font-size: 16px;
    display: block;
    margin: 10px 0;
}

#length {
    font-family: "poppins";
}

button {
    background-color: #0a2472;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
    font-family: "poppins";
}


textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
    resize: none;
    outline: none;
    font-size: 16px;
}

.output-code h3 {
    margin-bottom: -5px;
}

.output-code p {
    text-align: center;
}

.code-section h1 {
    text-align: center;
}

.code-section p {
    text-align: center;
    font-size: 16px;
}

@media (max-width: 768px) {
    .code-section {
        width: 95%;
        height: 90vh;
        padding: 20px;
    }

    .code-section  p {
        font-size: 14px;
    }
    
    /* button {
        width: 100%;
    } */

    textarea {
        min-height: 100px;
        width: 95%;
    }
}

@media (min-width: 1200px) {
    .code-section {
        max-width: 900px;
        padding: 40px;
    }
}


