@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --webkit-font-smoothing: antialiased;
    --moz-box-smoothing: grayscale;
}

body{
    font-family: 'muli', sans-serif;
    min-height: 100vh; 
    background-color: #E7E0E0;
}

.container{
    width: 1152px;
    max-width: 90%;
    margin: 0 auto;
}

nav{
    background-color: #401818;
    padding: 1rem 0;
    color: #fff;
}

section.input{
    padding-top: 100px;
}   

h2{
    font-size: 36px;
    text-align: center;
}

.form_wrap{
    display: flex;
    justify-content: center;
}

.input_wrap{
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    margin-top: 20px;
}

input{
    padding: 10px;
    font-size: 18px;
    border: none;
    outline: none;
    min-width: 400px;
}

button{
    padding: 0 20px;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #401818;
    color: #fff;
    cursor: pointer;
    height: 100%;
}

section.data{
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center ;
}

.loading{
    display:none
}

section.data p.def{
    font-size: 20px;
    color: #2D3748;
    line-height: 1.6;
}

.suggested{
    margin-top: 8px;
    color: #fff;
    background-color: #b57373;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
    display: inline-block;
}

.audio{
    margin-top: 20px;
}