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

* {
    box-sizing: border-box;
}

:root {
    --primary: #3cd8dd;
    --black: #070707;
    --width-break:600px;
    --white: #fdfafa;
    --red: #eee0e0;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    max-width: 800px;
    margin: auto;
    background-image: url(ee.svg);
}
.min-img{
    max-width: 100%;
    height: auto;

}
nav {
    background-color: aliceblue;
    text-align: center;
    border-bottom-left-radius: 1rem;
    background-image: url(nav.svg);
  
}

main {
    margin: auto;
    padding: 1rem;
    max-width: var(--width-break);
}

textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    min-height: 20vh;
    margin-top: 2rem;
    font-size: large;
    font-family: inherit;
}

button {
    background-color: var(--primary);
    margin: 1rem 0rem;
    padding: 1rem 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: large;
    font-weight: bolder;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
   
}


#translate-output {
    box-sizing: border-box;
    width: 100%;
    min-height: 20vh;
    max-height: 20vh;
    overflow:scroll;
    border: 1px solid var(--white);
    background-color: white;
}

footer {
    position: absolute;
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 27px;
    
    text-align: center;
    border-top-right-radius: 1rem;
    background-color:  aliceblue;
    background-image: url(mushko-Seal.svg);
}

footer p {
    max-width: var(--width-break);
    margin: auto;
}

.center{
    text-align: center;
}