
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #000; 
}
#updates {
    font-style: italic;
    background-color: aliceblue;
    font-size: 1.1rem;
    border-radius: 10px;
}

#message {
    background-color: aliceblue;
    color: #000;
    border-radius: 10px;

}

#logout {
    margin-top: -400px;
    margin-bottom: 0px;
}
#instruction {
    background-color: #cccccc;
}

#welcome-message h1 {
    margin-top: -10px;
    padding: 0;
    font-size: 2.5rem;
    font-family: "Audiowide", sans-serif;
    position: relative;
    color: azure;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.nav-recipes {
    display:grid;
}

.requests a {
  position: relative;
  top:0;
  font-size: 1.3rem;
  width: 100%;
  background: #333333de;
  color: white;
  border-radius: 20px;

}
.requests a:hover {
    background-color: rgb(0, 0, 0);
}





#vbackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#signup {
    display: none;
}

#sign-in {
    margin-top: 2rem;
}

#sign-in h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
    border-radius: 20px;
    background-color: #ffffff81;
}

#sign-in label, 
#sign-in input {
    color: black;
    background-color: aliceblue;
    border-radius: 5px;
    font-size: 1rem;
    padding: 5px;
}

.navigation button:hover, #view-recipe button:hover, #add-recipe button:hover {
    color: chocolate;
}

button {
    font-size: 1.2rem;
    background-color: aqua;
    font-weight: bold;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    
}


/*Styling the main page*/


.navigation button {
    background-color: #00000098;
    margin-top: 30%;
    margin-bottom: 50%;
    font-size: 3rem;
    color: aliceblue;
    border-style: dotted;

}

#view-recipes button {
    padding: 10%;
    background-color: rgba(165, 42, 42, 0.747);
    border-radius: 20px;
}

#add-recipes button {
    padding: 10%;
    margin-top: -150px;
    margin-bottom: 80px;
    background-color: rgba(165, 42, 42, 0.747);
    border-radius: 20px;
}


@media(max-width: 767px) {

    #view-recipes button, #add-recipes button {
        font-size: 1.8rem;

    
    }
}
#add-recipes button {
    padding: 11%;
    margin-top: -150px;
    margin-bottom: 80px;
    background-color: rgba(165, 42, 42, 0.747);
    border-radius: 20px;
}


body {
            font-family: Arial, sans-serif;
            /* padding: 20px; */
            /* max-width: 800px; */
            margin: 0 auto;
        }

        h1 {
            text-align: center;
            color: aliceblue;
        }

        form {
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        input, textarea {
            padding: 10px;
            font-size: 16px;
            /* width: 100%; */
        }

        button {
            padding: 10px;
            font-size: 16px;
            cursor: pointer;
        }

        .recipe-card {
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
        }

        .recipe-card h3 {
            margin-top: 0;
        }

        .logout-btn {
            background-color: #f44336;
            color: white;
            border: none;
            margin-bottom: 20px;
        }



 #recipesList, #recipesList h1 {
    z-index: 1;
    color: azure;

    justify-content: center;

    margin-bottom: 500px;
    background-color: #000000b0;
    border-radius: 20px;

 }













/* === TABLETS & DESKTOPS (768px and above) === */
@media (min-width: 768px) {
    #welcome-message h1 {
        font-size: 4rem; 
    }

    #sign-in {
        margin-top: 3rem;
    }

    #sign-in h3 {
        font-size: 2rem;
    }

    #sign-in label, 
    #sign-in input {
        font-size: 1.3rem;
    }

    button {
        font-size: 1.5rem;
        background-color: rgba(0, 255, 255, 0.8);
    }
}
