
html {
    font: 10pt;
}
body {
    background-color:white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 90vh;
    font-family:Arial, Helvetica, sans-serif;
    padding:10;
    margin:0;
    
}

nav {background-color:rgb(121,189,232); width:100%; padding: 2vh; align-content: center; min-height:5vh;}

nav ul { 
list-style-type:none;
    display: inline;
    margin: 0;
    text-align: center;
    padding: -1vh;
}
nav li {display: inline; margin-right:1vh}
    
header {
    background-color: rgba(0,61,167,1);
    min-height: fit-content;
    padding:1vh;
    font-size: 2rem;
    display: flex;
    color:#FDB813;
    justify-content:space-between;
    align-items: center;

}
header img{
    justify-content: right;
    width:25vh;
    padding-right: 15vw;
}

main { background-color:white;
        min-height: 28vh;
        display: grid;
    place-items: top;
    font-size: 1rem;
    font-family:Arial, Helvetica, sans-serif;
    margin:0;
   

}
main.text{ background-color:white;
        min-height: 13vh;
        display: grid;
    place-items: top;
    font-size: 1rem;
    font-family:Arial, Helvetica, sans-serif;
    margin:0;
    padding-left: 3vh

}

main.location {
    padding: 15px;
}
main.contact{
    background-color:white;
    min-height: 50vh;
    display:grid;
    place-items: top;
    grid-template-columns: 1fr 2fr;
    max-width: 64vw;
    gap:1px;
    padding:15px;
    font-size: .9rem;
    font-family:Arial, Helvetica, sans-serif;
    line-height: 1.1em;
}


aside {width: 100%; background-color: white; padding: 15px;}

.contact img{
    justify-content: right;
    width:18vh;
    padding-right: 0;
    margin: 1vh;
    
}
.CWmap { width: 50%;}
main ul{
    list-style-type: none;
    padding:0;
justify-content: Right;
    line-height: 2.5rem;    
    
}
.explore {
  display:grid;
  grid-template-columns:1fr 1fr; /* two equal columns */
  gap: 5px; /* space between columns */
  width: 1vh;
    padding:1vh;
}

main ul a{
    text-decoration-line: none;
    color:goldenrod;
 
}

main ul a:hover {
    color:brown;
    
}
main ul li{
    background-color:darkblue;
    padding: 2vh;
    margin: 1.5vh;
    border-radius: 25vh;
    border:dotted;
    border-color: darkgoldenrod;
}

.controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(141%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}


button.left {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
} 

button.right {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
} 

footer {background-color:#EDF2F2;
padding: 1vh;
text-align: right;
    min-height: fit-content;
    font-size: 1rem;
    display: flex;
    color:#FDB813;
    justify-content:space-between;
    align-items: center;
    position: fixed bottom;
}
footer img{ 
    justify-content: left;
    width:35vh;
    padding-right: 15vw;
   
}
