@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(225, 248, 12);
    color: rgb(0, 0, 0);
    width: 100%;
    height: 100vh;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    }
    .heading{
        font-size: 1.2rem;
        width: 100vw;
        text-align: center;
        color: rgb(255, 255, 255);
        background-color: rgb(0, 134, 196);
    }
    .example{
        display: grid;
        grid-template-columns: 2fr 3fr;
        align-items: center;
    }
    .inputSection{
    width: 60%;
    margin-top: 2rem;
    background-color: none;
    border: 1px solid rgb(0, 0, 0);
    }
    .inputSection input{ 
        height: 100px;
        width: 100%;
        background: none;
        border: none;
        font-size: larger;
    }
    .buttons{
        width: 50%;
        height: auto;
        padding: 20px;
    }
    .inputBtn{
        background: none;
        border: 1px solid black;
        background-color: rgb(0, 134, 196);
        font-size: 1.1rem;
        padding: 10px;
    }
    .inputBtn:hover{
        background-color: rgb(168,218,220);
        cursor: pointer;
        box-shadow: 0px 1px 3px black;
    }
    .outputSection{
        width: 60%;
        height: 100px;
        display: flex;
        flex-direction: column;
        border: 1px solid black;
    }
    .footer{
        background-color: rgb(0, 134, 196);
        position: absolute;
        bottom: 0px;
        text-align: center;
        width: 100vw;
        color: white;
    }
    .footer p{
        font-size: 0.8rem;
    }
    @media only screen and (max-width: 450px){
        .heading{
            font-size: 0.8rem;
        }
        .example{
            font-size: 0.6rem;
            padding: 1.2rem;
        }
        .inputSection{
            width: 90%;
        }
        .buttons{
            width: 90%;
            
        }
        .inputSection input{
            font-size: 0.8rem;
        }
        .inputBtn{
            font-size: 0.6rem;
        }
        .outputSection{
            width: 95%;
        }
        .outputSection h2{
            font-size: 0.8rem;
        }
    }