body{
     /*background-color: rgba(85, 27, 107, 0.4);*/
     background-color: white;
     text-align: center;
 }

header{
     width: 40%;
     margin: auto;
     margin-top: 30px;
     margin-bottom: 2px;
     border-radius: 25px;
     border: 2px solid;
     border-color: rgba(85, 27, 107, 1);
 }

header div{
    width: 50%;
    margin-left: 45%;
    /*display: inline-block;*/
    margin-top: 7%; 
    background-color: rgba(85, 27, 107, 1);
    border-radius: 25px;
    border: 2px solid;
    border-color: rgba(85, 27, 107, 1);
 }

header img{
    margin-left: -5%;
    max-width: 50%;
    max-height: 50%;
    float: left;
}
 
header p{
    color: rgb(238, 178, 13);
    text-align: center;
    font-size: 1vw;
}

 header p.head {
    color: rgb(238, 178, 13);
    font-weight: bold;
}

 header p.strapline {
    color: rgb(238, 178, 13);
    font-size: 1vw;
    font-style: italic;
}

@media (max-width: 500px) {                  
    header div{
       display: none;
       text-align: center;
    }
    header img{
        display: block;
        clear: both;
        margin-left: 25%;
    }
}

nav{
     background-color: rgba(85, 27, 107, 1);
     width: 80%;
     margin: auto;
     border: 2px solid;
     border-color: rgba(85, 27, 107, 1);
}

nav ul{
     list-style: none;
     margin: 0;
     padding: 0;
}

nav li{
    float: left;
}

 nav li a{
    display: block;
    color:rgba(132, 96, 35, 1);
    text-align: center;
    padding: 14px 10px;
    text-decoration: none;
}

nav li a.current{
    display: block;
    color:rgb(36, 238, 36); 
    text-align: center;
    padding: 14px 10px;
    text-decoration: underline;
}

section{
    width: 80%;
    margin: auto;
    text-align: center;
    border: 2px solid;
    border-color: rgba(85, 27, 107, 1);
}

article{
    width: 80%;
    margin: 10px;
    vertical-align: top;
    border: 2px solid;
    border-color: rgba(85, 27, 107, 1);
    border-radius: 25px;
    padding: 5px;
    display: inline-block;
}

article p.title {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5vw;
    font-weight: bold;
}

article p.text {
    text-align: left;
    font-family: 'Times New Roman', Times, serif;
    font-size: calc(14px + (20 - 14) * ((100vw - 500px) / (1600 - 500)));
}

article div p {
    text-align: left;
    font-family: 'Times New Roman', Times, serif;
    font-size: 2vw;
    font-weight: bolder;
    color: rgba(132, 96, 35, 1);
}

article ul {
    list-style-type: disc;
    text-align: left;
    margin-left: 15px;
}

article li {
    font-family: 'Times New Roman', Times, serif;
    font-size: calc(14px + (20 - 14) * ((100vw - 500px) / (1600 - 500)));
}

article img{
    margin-left: -5%;
    max-width: 50%;
    max-height: 50%;
    float: right;
}

article img.home {
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 25px;
    max-width: 50%;
    float: left;
}

article div {
    margin-left: 10%;
    margin-top: 10%;
}

footer{
    background-color: rgba(85, 27, 107, 1);
    width: 20%;
    margin: auto;
    margin-top: 2px;
    border-radius: 25px;
    border: 2px solid;
    border-color: rgba(85, 27, 107, 1);
}

footer p{
    /*color: rgba(132, 96, 35, 1);*/
    color: rgb(238, 178, 13);
    text-align: center;
    font-size: 1.1vw;
 }

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* unvisited link */
a:link {
    color: rgb(238, 178, 13);
}
  
/* visited link */
a:visited {
  color: rgb(36, 238, 36); 
}
 
 /* mouse over link */
a:hover {
  color: red;
  background-color: rgba(132, 96, 35, 1);
}
 
/* selected link */
a:active {
  color: red;
  background-color: rgba(85, 27, 107, 0.4);
}      

a:focus {
    color:yellow;
}