@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Nerko+One&display=swap');

body{
    margin : 0;
    padding : 0;
    box-sizing: border-box;
    font-family: 'Caveat', cursive;
}

header{
    height: 6rem;
    background-color: #F5E050;
}

header div img{
    cursor: pointer;
    margin-top: 0rem;
    width:6rem;
    height: auto;
}

header div{
    display: flex;
    justify-content: space-between;
}

h1{
    margin-top:  2.3rem;
    margin-right: 1rem;
    font-family: 'Gochi Hand', cursive;
}

section{
    /* height: 20rem; */
    min-height: 32.3rem;
    margin: 2rem 2rem;
    padding-top: 1rem;
    height: fit-content;
    
}
button{
    font-family: 'Gochi Hand', cursive;
    display: block;
    align-items: center;
    margin: 2rem auto;
    color: #0728fd;
    background-color : #f5e050;
    font-size: 1rem;
    cursor: pointer;
}

textarea{
    width: 80%;
    margin: auto;
    height: 5rem;
    display: block;
    padding: 1rem;
    font-family: 'Caveat', cursive;
    font-weight: lighter;
    font-size: 1.5rem;
}

.translatedText {
    width: 80%;
    height: 12vh;
    border : 1px solid;
    display: block;
    margin: 0 auto;
    padding: 1rem;
    font-family: 'Caveat', cursive;
    font-weight: lighter;
    font-size: 1rem;

}

.note{
    margin-top: 4rem;
}
.note h3{ 
    font-family:'Gochi Hand', cursive;
    margin-bottom: .5rem;
    text-align: center;
}

.note p{
    margin-top: .5rem;
    text-align: center;
    font-size: 1.2rem;
}

footer{
    background-color: #162aadf6;
    width: 100%;

}

footer h1{
    text-align: center;
    margin-bottom: .5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    color: #F5E050;
    

}

footer p{
    text-align: center ;
    font-family: 'Gochi Hand', cursive;
    /* font-family: 'Caveat', cursive; */
    font-size: 1.2rem;
    color: #F5E050;
    width:80%;
    margin : auto;
    padding-bottom: 1rem;
}

@media only screen and (min-width : 600px) {
    button{
        margin: 2rem auto;
        font-size: 1.5em;
    }

    textarea {
        width : 60%;
        height: 18vh;
    }

    .translatedText{
        width : 60%;
        height: 18vh;
    }

    footer p{
        width: 60%;
    }

    .note p{
        font-size: 1.5rem;
    }
}