@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Shadows+Into+Light+Two&family=Wallpoet&family=ZCOOL+KuaiLe&display=swap');
*{
    box-sizing: border-box;

}
body{
    margin: 0px;
    padding: 0px;
    text-align: center;
    transition: 1s ease;
}
.inout{
    width: 90%;
    margin: auto;
    margin-top: 50px;
    /* background-color: black; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    transition: 1s ease;
}
.inout textarea{
    width: 48%;
    height: 60vh;
    border-radius: 20px;
    padding: 20px ;
    font-size: 25px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.305);
    transition: 1s ease;

}
.outputtxt{
    background-color: black;
    color: white;
    border: 1px solid black;
    transition: 1s ease;
}
h1{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 40px;
    transition: 1s ease;

}

.mybtn1{
    background-color: rgb(157, 46, 24);
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 20px;
    border-radius: 5px;
    margin-top: 40px;
    font-family: 'Lobster', sans-serif;
    transition: 1s ease;
}
.mybtn2{
    background-color: rgb(157, 46, 24);
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 20px;
    border-radius: 5px;
    margin-top: 40px;
    font-family: 'Wallpoet', sans-serif;
    transition: 1s ease;
}
.mybtn3{
    background-color: rgb(157, 46, 24);
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 20px;
    border-radius: 5px;
    margin-top: 40px;
    font-family: 'Shadows Into Light Two';
    transition: 1s ease;

}
.mybtn4{
    background-color: rgb(157, 46, 24);
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 20px;
    border-radius: 5px;
    margin-top: 40px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    transition: 1s ease;
}
.btns{
    margin-top: 40px;
    width: 40%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    transition: 1s ease;
}
.darkmood{
    background-color: rgb(157, 46, 24);
    font-size: 25px;
    color: white;
    margin-top: 30px;
    border: none;
    padding: 3px 7px;
    border-radius: 5px;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.56);
    transition: 1s ease;
}
#lightmood{
    margin-left: 20px;
}
.darkmood:hover{
    cursor: pointer;transform: scale(1.2);    
}
.mybtn4:hover{
    cursor: pointer;transform: scale(1.2);    
}
.mybtn3:hover{
    cursor: pointer;transform: scale(1.2);    
}
.mybtn2:hover{
    cursor: pointer;transform: scale(1.2);    
}
.mybtn1:hover{
    cursor: pointer;transform: scale(1.2);    
}


/* -------------------------------------------- */
@media (max-width: 700px) {
    .inout{
        flex-direction: column;
    }
    .inout textarea{
        width: 100%;
        height: 25vh;
    }
    .outputtxt{
        margin-top: 20px;
    }
    .btns{
        /* display:inline-flexbox; */
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .mybtn1{
        /* width: 100%; */
        
    }
    .mybtn2{
        /* width: 100%; */
        
    }
    .mybtn3{
        /* width: 100%; */
        
    }
    .mybtn4{
        /* width: 100%; */
        
    }
}