@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo&display=swap');
:root{
    --primary-color: #393e46;
    --secondary-color: #ffd369;
    --ternary-color: #222831;
}

body{
    background-color: var(--primary-color);
    font-family: 'Nanum Myeongjo', serif;
    color: var(--secondary-color)
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.flex{
    display: flex;
}

.appbar{
    /* border: 1px solid var(--secondary-color); */
    justify-content: space-around;
    margin: 2rem auto;
}

.appname h4{
    font-size: 60px;
    font-weight: bolder;
    padding: 2rem 2rem;
}

.ferb-image img{
    max-width: 130px;
}

.container{
    /* background-color: #ffd369; */
    max-width: 1050px;
    margin: auto;
    padding: 1rem;
}

.input textarea{
    background-color: var(--ternary-color);
    border: 0;
    border-radius: 1rem;
    padding: 1rem;
    margin: 2rem auto;
    color: var(--secondary-color);
    font-size: larger;
}

/* .input .flex{
    justify-content: space-between;
} */

.btn .flex{
    justify-content: center;
}
.btn-output{
    background-color: var(--secondary-color);
    border: 0px;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--primary-color);
    font-size: larger;
}

.card-text{
    background-color: var(--ternary-color);
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 8rem;
    padding: 2rem;
    border-radius: 1rem;
}

.footer{
    background-color: var(--secondary-color);
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 4rem;
    color: var(--ternary-color);
}

.footer .flex{
    justify-content: center;
    align-items: center;
}

.link{
    text-decoration: none;
    padding: 1.5rem;
}

.footer a{
    color: var(--ternary-color);
}

.slash{
    color: var(--ternary-color);
}

.footer a:hover{
    outline: none;
}
.footer .icons{
    padding: 2rem 0;
}

@media only screen and (max-width: 600px) {
    .flex{
        flex-wrap: wrap;
        justify-content: center;
    }
    .flex .input{
        justify-content: center;
    }
    .flex .img{
        margin: 1rem auto;
        max-width: 50px;
    }
  }