html {
    /* height: 100%; */
}

body {
    background-image: linear-gradient(to top, #0f3499, #aab0c0);
    min-height: 100%; /* Use min-height instead of height */
    margin: 0; /* Remove default margin */
}

.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;
}
.container {
    width: 1624px;
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;

}

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: 200px;
    margin-left: 0px;
    background: none;
    border-radius: 15px;
    /* 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: 'Playfair Display', serif;
  color: #f5edf0;
  margin-top: 10px;
  border: 1px solid #faf8f9; /* 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;
}



.mybutton {
    background-color: #aab0c0;
    border: 1px solid #ffffff;
    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;
}

/* _____________________New styling for the resume pages ____________________*/
.resume_view {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: top;
    margin-bottom: 50px;
}

iframe {
    flex:3;
    width: 1024px;
    height: 1425px;

    /* current_resume_view.html */
}

.resume_view img {
    flex: 1;
    
}


