@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

*{
    padding: 5px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Orbitron", sans-serif;
    background-color: beige;
    font-size: 20px;
}

header{
    height: 100px;
    background-color: beige;
    display: flex;
    padding: 0 40px;
}

nav ul{
    display: flex;
    height: 80px;
    align-items: center;
    gap: 10 px;
    justify-content: space-around;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    text-decoration: none;
    color: rgb(150, 76, 224);
}

a.active {
    font-weight: bold;
}

h1 {
    text-align: center;
    font-size: 45px;
}

h2 {
    padding-left: 10px;
    font-size: 35px;
}

h3 {
    padding-left: 20px;
    font-size: 25px;
}


p {
    text-align: center;
    color: rgb(150, 76, 224);
    text-align: left;
}

table#ingredients {
    border-collapse: collapse;
    width: 70%;
    margin: 0px 50px;
    text-align: left;
    background-color: beige;
}
/* tr:hover { */
    /* background-color: rgb(150, 76, 224); */
/* } */

table th, table td {
    border-bottom: 2px solid rgb(190, 133, 223);
    padding: 5px;
    transition: 0.3s;
}
#tb_sub_head {
    background-color: rgb(190, 133, 223);
    color: black;
}
#first_tbl_head {background-color: rgb(150, 76, 224);
    color: black}

ol {
    padding-left: 50px;
}

.recipe-section label,
.recipe-section input[type="text"] {
  display: block;
  margin-bottom: 5px;
  width: 100%;
  max-width: 500px;
  padding: 8px;
  box-sizing: border-box;
}

footer {}