@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #121212;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.codingareasidething, .previewareasidething {
    flex: 1;
    padding: 30px;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    margin: 20px;
    display: flex;
    flex-direction: column;
    width: 1500px;
    max-height: 750px;
    width: 100%;
    height: 100%;
    min-width: 750px;
}

textarea {
    width: 100%;
    height: 485%;
    background-color: #2a2a2a;
    color: #dcdcdc;
    padding: 30px;
    border: 2px solid #444;
    border-radius: 8px;
    outline: none;
    font-size: 20px;
    line-height: 1.8;
    transition: all 0.3s ease;
    resize: none;
}

textarea:focus {
    border-color: #8b8b8b;
    background-color: #333;
}

#realpreviewnovirus {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 2px solid #444;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
}

.proofimshitatcss {
    display: flex;
    height: 90vh;
    flex-direction: row;
    justify-content: center;
    padding: 30px;
    width: 100%;
}

#sigmasharing {
    outline: none;
    color: white;
    background-color: black;
    border-color: white;
    border-width: 5px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    border-style: solid;
    width: 30%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
}

#sigmasharing:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .proofimshitatcss {
        flex-direction: row;
        padding: 20px;
    }

    .codingareasidething, .previewareasidething {
        margin: 15px;
        max-width: 100%;
        max-height: 600px;
    }

    .codingareasidething, .previewareasidething {
        max-width: 1300px;
        margin: 10px;
    }

    textarea {
        font-size: 18px;
    }
}
