@import url('https://fonts.googleapis.com/css2?family=Cambo&family=Homenaje&display=swap');
* {
    box-sizing:border-box;
}

body {
    margin: 0;
    background-color:#edf0ff;
    font-family: 'Cambo', serif;

}


header {
    text-align:center;
    background-color: #ccd0ed;
    width: 100vw;
    padding: 25px;

}

#instructions {
    margin: 20px;
    border: 2px solid #d6d6d6;
    border-radius:5px;
    padding: 30px;
    font-size:15px;
}
#macros {
    display:flex;
    text-align:center;
    justify-content: space-evenly;
    padding: 30px;
    margin: 20px;
}

#calories{
    display:flex;
    justify-content:center;
    align-items:center;
    width: 200px;
}

#protein{
    display:flex;
    justify-content:center;
    align-items:center;
    width: 200px;
}

#fat{
    display:flex;
    justify-content:center;
    align-items:center;
    width: 200px;
}

#carbohydrate{
    display:flex;
    justify-content:center;
    align-items:center;
    width: 200px;
}

#macros {
    border: 2px solid #d6d6d6;
    border-radius:5px;
}


#topSection {
    width:100%;
    text-align:center;
    align-items:center;
    top:50%
}


#searchAndGet {
    display: flex;
    position: relative;
    justify-content:space-around;
}

#selectFood {
    border:  2px solid #d6d6d6;
    width:300px;
}
#selectForm {
    flex: 1;
    text-align:center;
    margin:20px;
    width: 50%;
    padding: 30px 30px 30px 30px;
    border: 2px solid #d6d6d6;
    border-radius:5px;
}

#searchIngredients {
    flex: 1;
    text-align:center;
    align-items:center;
    margin:20px;
    width: 50%;
    padding: 30px 30px 30px 30px;
    border: 2px solid #d6d6d6;
    border-radius:5px;
}
#userInput {
    width: 200px;
    padding: 5px;
    border:  2px solid #d6d6d6;
    text-align:center;
}
#btnSearch {
    color: black; 
    background-color:#f0b678;
    border-radius:50px;
    width: 150px;
    padding: 5px;
    margin: 15px;
    border: none;
    font-family: 'Cambo', serif;
    font-size:13px;
}

#btnSearch:hover {
    cursor: pointer;
    opacity:75%;
}
#btnGet {
    color: black; 
    background-color:#f0b678;
    border-radius:50px;
    width: 150px;
    padding: 5px;
    margin: 15px;
    border: none;
    font-family: 'Cambo', serif;
    font-size: 13px;
}

#btnGet:hover {
    cursor: pointer;
    opacity:75%;
}

#selectFood {
    padding: 3px;
    margin:15px;
    text-align:center;
    border-radius: 5px;
}

#nutritionResult {
    margin:20px;
    border: 2px solid #d6d6d6;
    border-radius:5px;
    padding:30px;

}

#macroList {
    margin:20px;
    width: 30%;
}
