* {
  box-sizing: border-box;
  
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #070b59;
  color: #d390ed;
  justify-content: center;
}

/* Style the header */
header {
  background-image: url("https://branmer.neocities.org/banner-branmer.jpg");
  background-size: 80%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: white;
  padding: 30px;
  text-align: center;
  font-size: 35px;
  color: black;
  border: 0px solid red;
  border-radius: 5px;
            margin: 5px;
            width: 70%;
            height: 200px;

}

/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
  width: 70%;
  height: 100%;
         
}

/* Style the navigation menu */
nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #0583f2;
  padding: 20px;
   border: 0px solid red;
            border-radius: 5px;
            margin: 2px;
          
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

nav li {
  display: block;
  margin: 0;
  padding: 8px 15px;
  text-decoration: none;
}

nav li hover {
  background-color:#d390ed;
  color: white;
}

/* Style the content */
article {
  -webkit-flex: 5;
  -ms-flex: 5;
  flex: 5;
  background-color: #0583f2;
  padding: 10px;
   border: 0px solid red;
            border-radius: 5px;
            margin: 2px;
            object-fit: contain;
            
}

/* Style the footer */
footer {
  background-color: #0583f2;
  padding: 10px;
  text-align: center;
  color: white;
   border: 0px solid red;
            border-radius: 5px;
            margin: 5px;
            width: 70%;
}


/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
* {
  box-sizing: border-box;
}


div {
  width: 120px;
  float: left;
}