* {
  box-sizing: border-box;
}

/* Basic body style */
body { 
  font-family: Arial;
  margin: 0;
}

/* Logo & Title */
.LEAheader { 
  padding: 10px;
  text-align: center;
    background: #254099;
  color: white;
}

/* Flags for changing the language */
.LEAheaderFlags { 
  text-align: left;
}         

/* Navigation bar */
.LEAnavBar { 
  display: flex;
  background-color: #333;
}

/* Navigation bar anchors */
.LEAnavBar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

/* Change colour when hovering */
.LEAnavBar a:hover {
  background-color: #dedced;
  color: black;
}

/* Footer if needed */
.LEAfooter {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

/* Image stretching */
.stretchImage {
  width: 100%;
  height: auto;
}
 
 /* Paragraph style, with background image */    
p {  
  color: white;
  padding: 30px 30px;
  text-decoration: none;
  text-align: center;
  font-size: 24%;

  background-image: url('../Images/guitars1.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: 100% 100%;
}

/* Make a white box around the main text */ 
textarea  
{  
   font-family:"Times New Roman", Times, serif;  
   font-size: 25px;  
   text-align: center; 
   resize: none;
} 
/* Change details for smaller screens */
@media (max-width: 700px) {
  .LEAnavBar {   
    flex-direction: column;
  }
/* Change the text box for smaller screens */   
textarea  
{  
   font-family:"Times New Roman", Times, serif;  
   font-size: 10px;  
   text-align: center; 
}
}