@import url('https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Sanskrit:ital@0;1&display=swap');

* {
    margin: 0px;
    padding: 0px;

    font-family: 'Tiro Devanagari Sanskrit', serif;
    color: white;
}

html, body, #app {
    width: 100%;
    height: 100vh;
    background-color: #222;
}

body {
    overflow-y: auto;
}

#app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    text-align: center;
    min-height: 700px;
    height: 70vh;
    padding: 10vh 0px
}

#app h1 {
    font-size: 50px;
}

#app p {
    font-size: 20px;
}

#app i {
    font-size: 17px;
}

#textboxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

#textboxes textarea {
    width: 500px;
    height: 300px;
    background-color: #f1f1f1;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 20px 25px;
    color: black;
    font-size: 17px;
}

@media (max-width: 1300px) {
	#app {
	    min-height: 1000px;
	}
		
    #textboxes {
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    #textboxes { 
        width: 100%;
    }

    #textboxes textarea {
        width: calc(100% - 150px);
    }
}

@media (max-width: 550px) {
    #app h1 {
        font-size: 40px;
    }
    
    #app p {
        font-size: 17px;
    }
    
    #app i {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    #textboxes textarea {
        width: calc(100% - 100px);
    }
}