@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'dosis';
    height: 100vh; /* Set the body height to 100% of the viewport height */
    display: flex;
    background-color: #f7f1e8 ;
    color: #0f0801;
}

.wrapper {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    height: 100%; /* Set the wrapper height to 100% */
}

.logo {
    padding: 20px;
}

.logo img {
    max-width: 100%;
    height: auto;
    align-items:center;
}

.navigation {
    background-color: #f7b67c;
    color: #fff;
    padding: 50px;
    /*flex: 1;*/ /* Make the navigation div grow to fill the available space */
    display: flex;
    flex-direction: column; /* Stack navigation items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    width:9%;
}

.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Center text in the list */
}

.navigation li {
    margin-bottom: 10px;
}

.navigation a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.navigation a:hover {
    text-decoration: underline;
}


/* #0f0801(black) #aa5100 (dark brown) #da7b12 (orange) #f7b67c (light orange) #f7f1e8 (yellow) */

A{
Color:#da7b12;
Text-decoration:none;
}

A:hover{
	text-decoration:underline;
}

A:active{
Background-color:#aa5100;
}

A:visited{
	color:#aa5100;
}

p{
  color:#040621;
  margin:20px;
  font-size:20px;
}

h1{
  color:#da7b12;
  margin:20px;
  font-size:50px;
}

h2{
  color:#da7b12;
  margin:20px;
  font-size:35px;
}


.flex-container {
    display: flex;
    flex-direction: column; /* Stack flex items vertically */
}

.flex-item {
    flex: 1; /* Each flex item takes up equal space */
    padding: 20px;
}

.subtitle {
 padding:20px; 
}

.image-section {
    display: flex;
}

.image-section img {
  flex: 50%;
  width: 90%;
  height: 48%;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  justify-content: space-around;
  margin: 20px;
}

.rounded-image {
   border-radius: 10px;
}

.products table{
	display:inline;
	margin-left:45px;
	margin-right:45px;
	border-collapse:collapse;
}

.products img{
 border:none;
 width:248px;
 height:158px;
 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.products td{
  font-size:25px;
}

.products{
text-align:center;
 padding-bottom:10px;
}

.flags{
 	width:80%;
	margin:0 auto; 
}

