@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;   
}
body{
    font-family: 'Muli',sans-serif;
    min-height: 100vh;
    background-color: rgb(141, 137, 137);
}
.container{
    width: 1152px;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    
}
nav{
    background: black;
    color: white;
    padding: 1rem 0;
    font-family: 'Nunito', sans-serif;
    font-size: 38px;
}
section.input{
    padding-top: 100px;
}
h2{
    text-align: center;
    font-size: 36px;
    font-family: 'Nunito', sans-serif;
}
.form_wrap{
    display: flex;
    justify-content: center;
}
.input_wrap{
    display: flex;
    align-items: center;
    margin-top: 20px;
    
}
input{
    padding: 20px;
    font-size: 16px;
    min-width: 400px;
    border-radius: 20px;
    background-color: white;
}
button{
    background: black;
    color: white;
    height: 100%;
    font-size: 16px;
    padding: 0 20px;
    margin-left: 5px;
    border-radius: 20px;
    cursor: pointer;
}
section.data{
    max-width: 600px;
    margin: 0 auto;
    margin-top: 29px;
    text-align: center;
}
.loading{
    display: none;
}
section.data p.def{
    font-weight: 120px;
    font-weight: 300;
    color:black;
    line-height: 1.6;
}
.suggested{
    background: black;
    color:white;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
    margin-top: 5px;
    display: inline-block;
}
.audio{
    margin-top: 90px;
}