/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.6;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*Reset over*/
body {
  background-color: #cecece;
  color: #333;
}

a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b30000;
  background-color: #000000;
}
.home-head {
  position: sticky;
  display: flex;
  justify-content: space-between;
  top: 0;
  align-items: center;
  position: sticky;
  padding: 25px;
}
.Img-logo img {
  max-height: 100px;
  width: auto;
}
.Butt-order img{
  max-width: 200px;
  height: auto;
  padding: 10px;
}
/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #000000;
  top: 0;
  position: sticky;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: rgb(255, 0, 0);
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
  transition: color 0.3s;
}


.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
}
.active {
  background-color: #000000;
  color: rgb(255, 0, 0);
}


.Home-body {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

link {
  display: block;
}

.Title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  color: #222;
}

.Text-img {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.text-home {
  flex: auto;
  background-color: #fff;
  padding: 1.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  border: 1px #b30000;
  border-style: solid;
}

.img-home {
 display: flex;
  flex: auto;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px #b30000;
  border-style: solid;
}

.img-home img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.menu2{
  background-color: #fff;
  padding: 15px;
  border-radius: 0px 0px 10px 10px;
  font-size: 12pt;
  border: 1px #b30000;
  border-style: none solid solid solid;

}
.foot{
  display: flex;
  flex: auto;
  background-color: #333333;
  color: antiquewhite;
  justify-content: center;
  border-radius: 10px 10px 0px 0px;
  flex-flow: row wrap;
}
.he1{
  display: flex;
  flex: auto;
  background-color: #333333;
  color: #ffffff;
  justify-content: center;
  border-radius: 10px 10px 0px 0px;
  border: 1px #b30000;
  border-style: solid solid none solid;
  font-size: 16pt;
}
.weeks{
  background-color: #fff;
  padding: 15px;
  border-radius: 0px 0px 10px 10px;
  font-size: 12pt;
  border: 1px #b30000;
  border-style: none solid solid solid;
  text-align: center;
}
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #b30000; 
  border-radius: 4px; 
  box-sizing: border-box; 
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical 
}

input[type=submit] {
  background-color: #000000;
  color: #b30000;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #b30000;
  color: #000000;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}
/* All images are from the site, Pixabay or icons8*/