html {
    background-image: linear-gradient(to top, #0f3499, #aab0c0);
    height: 100%
}


body {
    /* background-image: url("images/WQTWithoutSlogan2400x1800.png");
    background-position: top center;
    background-repeat: no-repeat; */
    background-size: 100%;

}

.container {
    width: 1024px;
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;

}

h1 {
    font-family: 'Patua One', serif;
    font-size: 5.25rem;
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    text-shadow: 2px 2px 5px rgb(9, 9, 9);
    
}
h2 {
    font-family: 'Goldman', cursive;
    font-size: 3.25rem;
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    text-shadow: 2px 2px 5px rgb(9, 9, 9);
    
}

a {
    color: white;
    text-decoration: none;
    font-family: 'Patua One', cursive;
}

p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.5rem;
    color: rgb(17, 17, 44);
    margin-top: 1.0rem;
    margin-bottom: 1.0rem;
    text-shadow: 1px 1px 3px rgb(9, 9, 9);
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid lightgray;
}

header a img {
    width: auto;
    height: 175px;
    margin-left: 0px;
    background: none;
    /* To get the WQT label to fit correctly... */
}

nav {
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navyibutton a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.5rem;
    color: rgb(17, 17, 44);
    border-radius: 10px;
    font-weight: bold;
    height: 50px;

}

.dropdown-box {
    display: none;
/*this is the critical piece that hides the options 'til hovered.  */
    position: absolute;
    z-index: 99;
    /* z-index ensrues it shows on top, 1 or 99 works */
    padding-top: 20px;
}
.navyibutton:hover .dropdown-box { 
    display: block;
    margin-left: -20px;

}

.dropdown-box .navybutton  {
    font-family: 'Nunito Sans', sans-serif;
    width: 150px;
    background-color: white;
    text-align: center;
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: 10px;
    /* this drives how the dropped boxes are set up and where the letters are placed */

}

.dropdown-box .navybutton a {
    font-family: 'Nunito Sans', sans-serif;
    color: rgb(33, 28, 28);
    
    /* color: gray; */
    /* this drives the letters inside the dropped boxes, but not much else */
   }

   .dropdown-box .navybutton:hover {
    background-color: #0f3499;
    color: white;
    transition-duration: 1s;
   }

   .dropdown-box .navybutton a:hover {
    font-family: 'Nunito Sans', sans-serif;
    color: white;
    /* background-color: #0f3499; */
    /* text-decoration: underline; */
    transition-duration: 1s;
    /* This drives behavior when the user hovers over a dropped box,
    which was, in turn, drawn after the parent a-tag was hovered. */
   }


.a1 {
    text-decoration: none;
  font-size: 1rem;
  background-color: transparent; /* Change to transparent for a clear fill */
  /* display: inline-block; */
  font-family: 'Nunito Sans', sans-serif;
  color: #f5edf0;
  margin-top: 10px;
  border: 1px solid #514e4e; /* Add a border with the same color as the text */
  border-radius: 0; /* Set border-radius to 0 for square corners */
  box-shadow: none; /* Remove the box-shadow */
  padding: 11px 25px;
}

/* "Email Direct" and "Contact Form" buttons */

.mybutton {
    background-color: #aab0c0;
    border: 1px solid #514e4e;
    padding: 10px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.5rem;
    color: rgb(17, 17, 44);
    border-radius: 10px;
    font-weight: bold;
}

.navyibutton:hover .mybutton {
    background-color: #0f3499;
    color: white;
    transition-duration: 1s;
}

iframe {
    font-family: 'Patua One', cursive;
    width: 100px;
    height: 600px;
    border: 20px solid  #0f3499;
    margin-top: 50px;
    padding: 10px;
    /* current_resume_html_iew.html and old_resume_view.html */
}

/* ---------------- contact_us.html unique bits ------------------ */

main {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.main2 {

    min-height: 300px;
    padding-top: 50px;
}
/* this is unique to contact_us.html */
.inputwrapper {
    margin-bottom: 25px;
}

input[type="text"], [type="email"], [type="textarea"], [ type="checkbox"], [type="phone"] {
    padding: 12px 20px;
    width: 55%;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: rgb(84, 81, 81);
    font-weight: bold;
    box-sizing: border-box;
/* Font for what user types in...what they see themselves as... */
/* Test area user font isn't right.  Needs to be fixed */
}

textarea[name="message"] {
    padding: 12px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: rgb(84, 81, 81);
    font-weight: bold;
    box-sizing: border-box;
}

input[type="date"] {
    padding: 12px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: black;
    font-weight: bold;
    box-sizing: border-box;

}

select[name="preferred_time"] {
    padding: 12px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: rgb(84, 81, 81);
    font-weight: bold;
    box-sizing: border-box;
    border-radius: 20px;

}

input[type="submit"] {
    padding: 12px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: rgb(84, 81, 81);
    font-weight: bold;
    box-sizing: border-box;
    border-radius: 20px;

}

button[onclick="submitFormDataAsJson(event)"] {
    padding: 12px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: rgb(84, 81, 81);
    font-weight: bold;
    box-sizing: border-box;
    border-radius: 20px;
}


.newline {
    display: block;
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.0rem;
    color: white;
    text-shadow: 1px 1px 3px rgb(9, 9, 9);
}
.margin-right-a {
    margin-right: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    margin-bottom: -10px;
    display: inline;
}

input[type=radio] {
    margin-right: 10px;
}

/* form {
    margin: 40px 0px;
} */

/* label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.2rem;
    color: rgb(84, 81, 81);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
} */