@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 150%;
  border: none;
  list-style-type: none;
  box-sizing: border-box;
}

/*Body*/
body {
  background-color: #eba6a6;
  font-family: Arial, sans-serif;
}

/* heading and text */
h1 {
  text-align: center;
  font-size: 36px;
  font-weight: normal;
  color: #e94d40;
}

h2 {
  text-align: center;
  margin-top: 10px;
  font-size: 30px;
  font-weight: normal;
  color: #0c243c;
}

p {
  text-align: center;
  margin-top: 15px;
  font-size: 23px;
  color: #0c243c;
}

/* colours */
.burntred {
  color: #E94D40;
}
.navyblue {
  color: #0C243C;
}

/* wrapper */
#wrapper {
    width: 1000px;
    margin: 35px auto;background-color:  white;
}
/*inner wraP*/
#inner-wrapper {
  padding: 25px;
}

/* nav */
nav {
  margin-top: 13px;
  font-size: 23px;
}

nav > ul {
  display: flex;
  justify-content: space-between;
}

a:link {
  color: #0c243c;
}

a:hover {
  color: #E94D40;
  
}

.cakes-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 100%;
  }
.cakes-container h2, .cakes-container 
p{color: #0C243C;}

.column {
	width: calc(50% - 15px);
  flex-grow: 1;
  text-align: center;
}

.column img {
  max-width: 100%;
  height: auto;
}

/* Table */
.table-container {
  width:90%;
  margin-top: 100px;
  left: 5%;
   position: relative;
}

#dataTableArea table {
  width: 100%;
  text-align: left;
  background-color: #eba6a6;
  padding: 8px;
}
table, th,td 

  {position:relative;
    
  
  font-size: 24px;
  border-collapse: separate;
  border:4px solid white;
}
/* form */
.order-form {
  padding: 20px;
  background-color: #fff9f5;
  border-top: 2px solid #ffb3ab;
  margin: 40px 0;
  color: #0c243c;
}

.order-form h2 {
  text-align: center;
  color: #E94D40;
  font-size: 30px;
  margin-bottom: 20px;
}

.order-form label {
  font-weight: bold;
  color: #0C243C;
  display: block;
  margin-bottom: 5px;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="tel"],
.order-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 1em;
  color: #0C243C;
}

.order-form input[type="submit"] {
  background-color: #E94D40;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
}


/* Footer */
footer {
  width: 100%;
  margin: 40px auto;
  font-size: 18px;
  color: #0c243c;
  text-align: center;
}
