@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400&family=Otomanopee+One&display=swap');

:root{
    --primary-color: #141416;
    --secondary-color: #202127;
    --light-gray: #a8a7a5;
}

*{
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: 'Otomanopee One', sans-serif;
    color: white;
}

header{
    /* background-color: var(--primary-color); */
    text-align: center;
    /* height: 9vh;
    width: 70vh; */
    margin: 12px auto;
    /* border-radius: 30px 0 30px 0; */
}

main{
    margin: auto;
    padding: 1rem;
    max-width: 1000px;
}

.container{
    display: flex;
}

.box-1{
    flex: 1;
    margin: 0 80px 0 0;
}

.box-2{
    flex: 3;
}

textarea {
    width: 100%;
    height: 20vh;
    display: block;
    margin: auto;
    padding: 1rem;
    border: 2px solid black;
    font-size: 1rem;
    font-family: 'Kanit', sans-serif;
}

button {
    background-color: var(--primary-color);
    border: none;
    margin: 1rem auto;
    padding: 1rem;
    font-family: 'Otomanopee One', sans-serif;
    border-radius: 0.5rem;
    color: white;
}

#output{
    border: 2px solid black;
    height: 15vh;
    width: 100%;
    margin: 1rem auto;
    padding: 1rem;
    background-color: white;
    color: black;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    text-align: center;
    border-radius: 2rem 2rem 0 0;
}

ul{
    margin: 0.4rem;
    padding-inline-start: 0px;
}

li{
    display: inline;
}

a{
    color: var(--light-gray);
    font-size: 1.3rem;
    margin: 0.3rem;
}

a:hover{
    color: white;
}