*{
    margin: 0;
    padding: 0;
    font-family: 'Hind Guntur', sans-serif;
    box-sizing: border-box;
}

body{
    background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0,0,0,0.82)), url('../images/background2.jpg');
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

main{
    margin-left: 20px;
    margin-right: 20px;
}

.logo{
    width: 220px;
    height: 95px;
    cursor: pointer;
}

.navbar{
    width: 85%;
    margin: auto;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar ul li{
    list-style-type: none;
    margin: 0 20px;
    display: inline-block;
    position: relative;
}

.navbar ul li a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.navbar ul li a.active{
    color: rgb(189, 255, 145);
}

.navbar ul li a:hover{
    color: rgb(189, 255, 145);
}

.navbar ul li::after{
    content: '';
    height: 3px;
    background: rgb(189, 255, 145);
    position: absolute;
    left: 0;
}

.navbar ul li:hover::after{
    width: 100%;
}

.content{
    width: 100%;
    text-align: center;
    color: #dbf5c7;
    position: relative;
}

.content h1{
    font-size: 50px;
}

.content p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
    font-size: 19px;
}

.wrapper{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 15px auto;
    width: 92%;
}

.wrapper .images {
    display: flex;
    flex-direction: column; 
    margin-right: 30px;
    margin-left: 10%;
}

.wrapper img{
    max-width: 510px;
    height: auto;
    margin-right: 20px;
    margin-bottom: 100px;
}

.wrapper img:last-child {
    margin-bottom: 0;
}

.wrapper .textbox{
    color: whitesmoke;
    font-size: 15.5px;
    flex-grow: 1;
}

.wrapper .textbox h3{
    margin-left: -30px;
}

.wrapper .textbox h2{
    margin-left: -30px;
}

button {
    display: inline-block;
    width: 200px;
    padding: 15px 0;
    text-align: center;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14.5px;
    border: 2px solid rgb(189, 255, 145);
    background: transparent;
    color: rgb(189, 255, 145);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

button:hover {
    background: rgb(189, 255, 145);
    color: rgb(0, 48, 0);
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-link {
    display: inline-block;
    width: 200px;
    padding: 15px 0;
    text-align: center;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14.5px;
    border: 2px solid rgb(189, 255, 145);
    background: transparent;
    color: rgb(189, 255, 145);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.button-link:hover {
    background: rgb(189, 255, 145);
    color: rgb(0, 48, 0);
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin: auto;
}

table {
    width: 97%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-left: 1.5%;
    background-color: transparent;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

td{
    color: #fff;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.left-column {
    width: 15%;
}

.right-column {
    width: 85%;
}

form { 
    max-width: 600px; 
    margin: auto; 
}
        
label { 
    display: block; 
    margin-top: 10px; 
    font-weight: bold; 
    color: rgb(189, 255, 145);
}
        
input, select, textarea, button { 
    width: 100%; 
    padding: 8px; 
    margin-top: 5px; 
}
        
.ingredient-group { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 10px; 
}
        
.ingredient-group > * { 
    flex: 1; 
}

footer{
    background-color: rgba(0, 0, 0, 0.45);
    padding: 10px;
}

footer p{
    color: rgb(189, 255, 145);
    margin-right: 10px;
    text-align: right;
}

@media (max-width: 1200px) {
    .wrapper {
        width: 85%;
    }
}

@media (max-width: 992px) {
    .wrapper {
        width: 90%;
        flex-direction: column;
        align-items: flex-start;
    }
    .wrapper img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .content p {
        font-size: 17px;
        line-height: 22px;
    }
}

@media screen and (max-width: 600px) {
    th, td {
        padding: 8px;
    }

    .left-column {
        width: 40%;
    }

    .right-column {
        width: 60%;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 150px;
        height: 65px;
    }
    .content p {
        font-size: 15px;
        line-height: 20px;
    }
    .wrapper {
        width: 100%;
        margin: 15px auto;
    }
    .wrapper img {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .wrapper .textbox h3{
        margin-left: 0px;
    }
    button {
        width: 150px;
        padding: 10px 0;
        font-size: 13px;
    }
}
