/* Scottish ARtists CSS Template */
:root {
    --var-header-text-colour: #ffffff ;
    --var-background-colour: #f1f1f1 ;
}

body{
    font: 15px/1.5 Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    background-color: #f4f4f4;
}

/* container to fill to 80% of screen width */
.container{
    width:80%;
    margin: auto;
    overflow: hidden;
}

/* header */
header{
    background: linear-gradient(to bottom left, #00ff99 0%, #0099ff 100%);
    font: 25px/1.5 Arial, Helvetica, sans-serif;
    color: #ffffff; /* white */
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #85b8eb 3px solid;

}

/* After the header we have two blocks, one for artists and one for writers */
/* These blocks should float next to each other and each be half the screen, but stack for narrow screens */

.flex-container {
  display: flex; 
  flex-wrap: wrap; /* wrap or nowrap */
  justify-content: space-between;
  float: left ;
}

.flex-container .box {
/*  background-color: #f1f1f1; */
/*  background: linear-gradient(to bottom left, #00ff99 0%, #0099ff 100%); */
  width: 50%;
  text-align: center;
  font-size: 20px;
  box-sizing: border-box;
  justify-content: space-around;
  border: none;
}

.flex-container img{
padding: 5px;
}


/* Here we have elements with class="imageright" and class="imageleft" */

/* Here we have elements with class="imageright" and class="imageleft" */ 

.imageright {
    display: flex;
    flex-wrap: wrap;
/*    width:70%; */
    justify-content: space-around;
    box-sizing: border-box;
}

.imageright img{
 float: right;
 padding: 10px;
 border:5px;
 width:120px;
}

.imageleft{
    display: flex;
    flex-wrap: wrap;
/*    width:70%;*/
    box-sizing: border-box;
    justify-content: space-around;
}

.imageleft img{
 width:120px;
 padding: 10px;
 border:5px;
 float: left;
}



/*boxes*/

footer{
    padding: 5px;
    color: #ffffff;
    background: linear-gradient(to bottom left, #00ff99 0%, #0099ff 100%);
    text-align: center;
}


/* media queries
removes floats and centers the text */
@media(max-width: 768px){

    header{
        padding-bottom: 20px;
    }

 }
