


*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    margin: 0;
    padding:0;
}

h1{
    /*font-size: 2.5vw;*/
    margin: 50px 0px;
}
h2{
    /*font-size: 1.5vw;*/
    margin: 0px 0px 20px;
}

p{
    /*font-size: 1.5vw;*/
    margin: 0px 0px;
    padding: 10PX;
}

header{
    background-color: #333;
    color:#333;  
}

body{
    
    background-color: #aaa;
    text-align: center;
}

footer{
    position: relative;
    bottom: 0%;
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #aaa;
    margin-top: 50px;
    opacity: 0.5;
}

.navbar ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    /*justify-content: space-around;*/
    justify-content: center;
    background-color: #333;
}

.navbar li a {
    display: inline-block;
    color: white;
    padding: 0.5em;
    text-decoration: none;
}

.navbar li a:hover, 
.navbar li a:focus {
    /*color: #000;*/
    text-decoration: underline;
    background-color: #3e3e3e;    
}
@media (800px > width){
    .navbar ul{
        display: block;
        width: 100%;
        
        
    }
    .navbar li a{
        display: block;
        width: 100%;
        /*border-bottom-style: outset;*/
    }
}
/*   form fields  */

/* submit for contact from. button for the rest.*/

input[type=text], input[type=number]{
    
    text-align: center;
    min-width: 250px;
    padding: 12px 20px;
    margin: 0px 0px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;  
    
}

@media (800px > width){
input[type=text], input[type=number]{
    width: 100%;
    font-size: large;
    
}
}


label{
    display:block;
    margin: 24px 0px;
}

/*
input[type=select]{
    
    
    min-width: 250px;
    padding: 12px 20px;
    margin: 24px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
    text-align: center;
}
*/

select {
    
    
    min-width: 250px;
    padding: 24px 20px;
    margin:  0px 0px;
    display: inline-block;
    border: 1px solid #ccc;
    
    border-radius: 4px;
    box-sizing: border-box; 
    /*needed to center text in select box*/
   text-align-last: center;
    
    
    
}



@media (800px > width){
select{
    width: 100%;
    font-size: large;
}

}




input[type=submit], button{
    width: 250px;
    background-color: dodgerblue;
    color: white;
    padding: 14px 20px;
    margin: 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;   
    display: inline-block;       
}

textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    /*font-size: 16px;*/
    resize: none;
}

div  {
margin: auto;
margin-inline: auto;    
width: 33.3%;
padding: 12px 20px;
}

@media (800px > width){
div {
width: 100%;  
}
}    
.contact {
    text-align: center;
    font-size: large;
}


