body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #4a5870
}
/* Style the top navigation bar */
.navbar {
  overflow: hidden; /* Hide overflow */
  background-color: #8997ab;
  outline: #131542 solid 5px;
}

/* Style the navigation bar links */
.navbar a {
  float: left; /* Make sure that the links stay side-by-side */
  display: block; /* Change the display to block, for responsive reasons (see below) */
  color: #ebefff; 

  text-align: center; /* Center the text */
  padding: 10px 40px; /* Add some padding */
  text-decoration: none; /* Remove underline */
}

/* Change color on hover/mouse-over */
.navbar a:hover {
  color: #131542;
}

/* Ensure proper sizing */
* {
  box-sizing: border-box;
}

.header {
  padding: 30px; /* some padding */
  text-align: center; /* center the text */
  background: #ebefff;
  color: #131542;
  outline: #131542 solid 5px;
}

/* Increase the font size of the <h1> element */
.header h1 {
  font-size: 30px;
  
}


/* Column container */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 55%; /* Set the width of the sidebar */
  color: #ebefff;
  background-color: #8997ab; /* Grey background color */
    outline: #131542 solid 5px;
  padding: 20px; /* Some padding */
  text-align: center; /* Center text*/
}

/* Main column */
.main {
  flex: 45%; /* Set the width of the main content */
  color: #ebefff;
  background-color: #8997ab; /* White background color */
    outline: #131542 solid 5px;
  padding: 20px; /* Some padding */
  text-align: center; /* Center text*/
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 30%;
  }
}

.footer {
  padding: 2px; /* Some padding */
  text-align: center; /* Center text*/
  background: #8997ab; /* blue background */   
  color: #ebefff; /* light blue text */
  outline: #131542 solid 5px;
}



/* Column container */
.product {
  display: flex;
  flex-wrap: wrap;
}

/* Create three unequal columns that sits next to each other */
/* Sidebar/left column */
.product-left {
  flex: 30%; /* Set the width of the sidebar */
  color: #ebefff;
  background-color: #8997ab; /* Grey background color */
    outline: #131542 solid 5px;
  padding: 20px; /* Some padding */
}

/* Main column */
.product-main {
  flex: 40%; /* Set the width of the main content */
  color: #ebefff;
  background-color: #8997ab; /* White background color */
    outline: #131542 solid 5px;
  padding: 20px; /* Some padding */
}

.product-right {
  flex: 30%; /* Set the width of the sidebar */
  color: #ebefff;
  background-color: #8997ab; /* Grey background color */
    outline: #131542 solid 5px;
  padding: 20px; /* Some padding */
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .product {
    flex-direction: column;
  }
}

.contact {
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.contact-side {
  flex: 35%; /* Set the width of the sidebar */
  color: #8997ab;
  background-color: #8997ab; /* Grey background color */
    outline: #131542 solid 5px;
  padding: 20px; /* Some padding */
}

/* Main column */
.contact-main {
  flex: 65%; /* Set the width of the main content */
  color: #ebefff;
  background-color: #8997ab; /* White background color */
  outline: #131542 solid 5px;
  padding: 20px; /* Some padding */
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .contact {
    flex-direction: column;
  }
}

/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: #ebefff;
  outline: #131542 solid 5px;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 5px #131542;
}

img {
  display: block;
  margin: auto;
}

.header h1 {
  font-size: 50px
}

.footer a{
  color: #ebefff;
}

.footer a:hover {
  color: #131542;
}