body {
    background-color: rgb(0, 0, 51);
}

main > img {
    position: relative;
	opacity: 100%;
	object-fit: cover;
	width: 100%;
	height: 90vh;
	z-index:-1;
}

main {
    color: rgb(255, 204, 51);
    height: 90vh;
    background: url("./../img/bbqfond.jpg") no-repeat;
    background-size: cover;
    overflow: hidden;
}

main > div {
    margin: 5% 8%;
}

main h1 {
    color: ghostwhite;
    font-weight: bold;
}

main input, select {
    padding-left: 15px;
	box-sizing: border-box;
	background-color: ghostwhite;
	height:50px;
    width: 25%;
	border:none;
}

button {
    box-sizing: border-box;
    background-color: rgb(255, 153, 51);
    height:50px;
    padding: 0 2%;
	border:none;
    transition: all ease 0.2s;
}

button:hover {
	background-color:rgb(255, 204, 51);
}

#result, #comment {
    margin: 30px 0 30px 10%;
}

#result {
    font-weight: bold;
    font-style: italic;
    color: ghostwhite;
}


#img img{
    width: 10%;
    height: 10%;
    object-fit: contain;
    margin-right: 25px;
    z-index: 1;
}



main div div:last-child {
    display: flex;
    flex-wrap: wrap;
}

