/* This is the style sheet, this file will be linked to all the other files, allowing me to style each page. */

/* This is the styling for the navigation bar, including colours, placement etc. */
ul {
    list-style-type: none;
    font-size: 35px;
    padding: 0;
    margin-top: 10;
    overflow: hidden;
    background-color: white;
    height: 50px;
    display: flex;
    justify-content: right;
}

/* This code here pushes it so all of the links are onto one line. */
ul li {
    float:left;
}

/* This here will change the colour of the links themselves, giving them a colour, removing their decoration (underline) and giving them space. */
li a {
    color: green;
    text-decoration: none;
    padding: 9px;
}

/* a:hover allows me to change what the element looks like when the cursor is hovering over it. */
li a:hover {
    color: maroon;
    text-decoration: none;
}

/* This here is connected to the home image at the top of the navbar, giving it a style. */
#Homebutton {
    width: 50px;
    height: 50px;
    float:left;
}

/* This here is the start of the style code for my forms, (login, signup and contact) */
#p {
    display: flex;
    justify-content: center;
    color: green;
    font-size: 20px;
}


form {
    text-decoration: none;
}

h1 {
    color: green;
    display: flex;
    justify-content: center;
}
.forrm {
    padding-left: 200px;
    padding-right: 200px;
    padding-bottom: 40px;
    padding-top: 20px;
    border-style: solid;
    border-color: black;
    background-color: white;
}
#form {
    display: flex;
    justify-content: center;
    height: 300px;
    background-image: url("Assets/Fruit.png");


}
#label {
    font-size: 30px;
}
#buttonn {
    position: absolute;
    left: 47%;
    margin-top: 40px;
    width: 90px;
    height: 30px;
}

#sign {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#sign p {
    color: green;
    float: left;
    margin: 0%;

}

#button {
    padding: 0;
    margin-left: 20px;
    width: 90px;
    height: 25px;
    border-color: rgb(228, 193, 150);
    color: rgb(182, 140, 89);
    background-color: bisque;
}