* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  margin: 0;
  font-size: 12px; /* Base font size */
  background-image: url('zebra-bg.jpg');
}

.boxing {  
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 5% 5% 5% 5%;
}

/* Header */
.header {
  max-width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: center;
  background: #afddf9;
  border: solid 10px #6cb7e6;
}

.headertext {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  margin: 30px 200px 30px 200px;
  text-align: center;
  background: #6cb7e6;
  color: white;
  border: solid #6cb7e6;
  border-radius: 25px;
}


/* Column container flexbox*/
.container {  
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-flow: row;
  justify-content: stretch;
  border-left: solid 10px #6cb7e6;
  border-right: solid 10px #6cb7e6;
}
  

/* Main column */
.main {
  flex: 85%;
  height: 50vw;
  background-color: white;
  padding: 20px;
}

/*navbar */
.navbar {
  flex: 15%;
  height: 50vw;
  flex-flow: row;
  outline-offset: -30px;
  padding: 20px;
  justify-content: flex-start;
  align-content: flex-start;
  background-color: black;
}

  /* navbar Buttons  */
  .navbar button {
      justify-content: center;
      width: 100%;
      height: 3vw;
      border: 6px outset #a3c0d1;
      border-radius: 25px;
      text-align: center;
      font-size:0.8vw;
      text-decoration: none;
      display: inline-block;
      transition-duration: 0.4s;
      cursor: pointer;
      background-color: #afddf9;
      color: white;
      padding: 1%;
  }
    .navbar button:hover {
    background-color: white;
    color: #def2ff;
  }
  
.centrerows {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-content: space-around;
}

.columns {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: center;
}

.center {
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}

/* Footer */
.footer {
  width: 100%;
  max-height:100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  background: #afddf9;
  border: 10px solid #6cb7e6;
}
