* {
  box-sizing: border-box;
}

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

/* Header */
.header {
  max-width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: center;
  background: #7FEF09;
  color: white;
}

/*boxing everything else*/
.boxing {  
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  padding: 2% 10% 2% 10%;
}


/* Column container flexbox*/
.container {  
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-flow: row;
  justify-content: stretch;
}
  

/* Main column */
.main {
  flex: 85%;
  height: 50vw;
  background-color: white;
  border: 40px solid;
  border-image: url("songborder.jpg") 30 stretch; 
  outline: 6px dashed #afddf9;
  outline-offset: -46px;
  padding: 20px;
}

/*navbar */
.navbar {
  flex: 15%;
  height: 50vw;
  flex-flow: row;
  justify-content: flex-start;
  align-content: flex-start;
  background-color: #afddf9;
}

  /* navbar Buttons  */
  .navbar button {
      justify-content: center;
      width: 100%;
      height: 3vw;
      border: 6px outset #a3c0d1;
      text-align: center;
      font-size:0.8vw;
      text-decoration: none;
      display: inline-block;
      transition-duration: 0.4s;
      cursor: pointer;
      background-color: #afddf9;
      color: white;
  }
    .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 wrap;
  justify-content: space-around;
  align-content: space-around;
}
  

/* Footer */
footer {
  width: 100%;
  max-height:100%;
  display: flex;
  flex-flow: row nowrap;
  padding: 0px;
  justify-content: center;
  align-content: center;
  background: #afddf9;
  color: white;
  border-top: 6px solid black;
}
