*{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #7F5539
}

@font-face{
    font-family: myFont;
    src: url(../src/veganstyle.ttf)
}

body{
    background-color: #EDEDE9;
}

header{
     height:fit-content;
}

header h1{
     margin:0;
     text-align:center;
     font-size: 6vw;
     padding-top: 30px;
     padding-bottom: 30px;
     height:fit-content;
     font-family: myFont;
}
 
#searchTerm{
    border: none;
    border-bottom: 1px solid #7F5539;
    font-size: 30px;
    background-color: #EDEDE9;
}

#searchTerm:focus{
    outline: none;
}

#status{
     font-style: italic;
     text-align: center;
     height: fit-content;
}
#status img{
    position: absolute;
    bottom: 100px;
}

h2{
    text-align: center;
}
 
#content{
    display:grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 400px);
    gap: 20px;
    width: 90vw;
    margin: 0 auto;
}

.result{
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: 800px;
    background: #D6CCC2;
    border-radius: 10px;
    border: 2px solid #7F5539;
}

.result img{
    width:100%; 
    box-shadow: 0 10px 20px 0 rgba(0,0,0,.4);
    border-radius: 5px;
}

.result div{
    overflow: auto;
    padding: 3px;
    line-height: 25px;
}

.result h3{
    text-align: center;
    font-size: 200%;
}

.result p{
    color: #7F5539;
}

.result div::-webkit-scrollbar{
    width: 1px;
}
.result div::-webkit-scrollbar-track{
    background: #f1f1f1;
}
.result div::-webkit-scrollbar-thumb{
    background: #888;
}
.result div::-webkit-scrollbar-thumb:hover{
    background: #555;
}

a{
    color: black;
}

button{
  cursor : pointer;
  border-style : 2px solid #7F5539;
  border-width : 2px;
  border-radius : 10px;
  padding : 10px 18px;
  box-shadow : 0 1px 1px rgba(0,0,0,.2);
  font-size : 9.5pt;
  font-weight : bold;
  color : #7F5539;
  font-family : sans-serif;
  text-decoration : none;
}

button.color{
    border-color: #7F5539;
    background: #E3D5CA;
}

button:hover{
    background: #F5EBE0;
}

button:active{
    background: #F5EBE0;
}

button:focus {outline:0;}

.widgets{
    margin-top: 1em;
    margin-bottom:1em;
    text-align: center;
}

#filters{
    display:flex;
    justify-content: center;
    gap: 50px;
}

footer{
    text-align: center;
    position: relative;
    top: 300px;
}
footer a:visited{
    color:#7F5539;
}
footer a:link{
    color:#7F5539;
}
footer a:hover{
    color: #D5BDAF;
}
footer a:active{
    color: #D6CCC2;
}