@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body
{
    min-height: 100vh;
    width: 100%;
    background: #fdfcfc;
}

.text-boxes
{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
    margin-bottom: 60px;
}

.text-boxes .text-box
{
    height: 380px;
    max-width: 660px;
    width: 100%;
    margin: 55px 0;
}

.text-boxes .text-box .topic
{
    font-size: 18px;
    font-weight: 600;
    color: #f2ab26;
    margin: 4px;
}

.text-boxes .text-box textarea
{
    height: 100%;
    width: 100%;
    padding: 30px;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    border: 1px solid #f2ab26;
    background: #e7edef;
}

.text-box textarea::-webkit-scrollbar
{
    display: none;
}

.text-boxes .text-box button
{
    height: 45px;
    width: 155px;
    color: #fff;
    background: #f2ab26;
    outline: none;
    border: none;
    font-weight: 400;
    font-size: 17px;
    margin: 8px 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.text-boxes .text-box button:hover
{
    background: transparent;
    color: #000;
    border: 1px solid #f2ab26;
}

@media (max-width: 400px){
    .text-boxes .text-box button{
        width: 100%;
    }
}