@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin&display=swap');

body, h1, h2, h3, h4, h5, h6, p  {
  font-family: 'Libre Franklin', sans-serif;
}

h1{
  margin-top: 16px;
  font-size: 4vw;
}

h2{
  font-size: 3vw;
}

h3{
  font-size: 2vw;
}

p{
  font-size: 2vw;
  color: white; 
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Libre Franklin', sans-serif;
}

a{
    text-decoration: none;
}

li, button {
font-family: 'Libre Franklin', sans-serif;
  font-weight: 400; 
  color: white; 
  text-decoration: none;
}

header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 10%;
  background-color: #0000FF;
}

.logo {
  cursor: pointer;
  margin-right: auto;
  color: white;
}

.logo h2, h3, a{
  color: white;
}

/* Sizing for desktop full screen viewing */
@media screen and (min-width: 601px) {
  .logo a{
    font-size: 2vw;
    display: inline-flex;
    align-items: center;
    position: relative;
  }

  .logo svg{
    /*display: inline-flex;
    align-self: center;
    top: .125em;
    position: relative; */
   width: 3vw;
    height: 3vw;
    fill: white; 
  }

  li, button {
    font-size: 1.3vw; 
  }

  footer a{
      font-size: 1.5vw;
  }

  .PDFdownloadr{
    font-size: 1.5vw;
  }

  .PDFdownloadr svg{
    height: 2vw;
    width: 2vw;
  }
}

/* This is all the font sizes for mobile viewing */
@media screen and (max-width: 600px) { 
  .logo a{
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    position: relative;

  }

  .logo svg{
    /*display: inline-flex;
    align-self: center;
    top: .125em;
    position: relative; */
    width: 18px;
    height: 18px;
    fill: white; 
  }

  li, button {
    font-size: 12px; 
  }

  footer a{
    font-size: 12px;
  }

  .PDFdownloadr{
    font-size: 10px;
  }

  .PDFdownloadr svg{
    height: 12px;
    width: 12px;
  }
}

.fav-table {
  border-collapse: collapse;
  margin: 20px auto;
  width: 60%;
}

.fav-table th, .fav-table td {
  border: 2px solid black;
  padding: 10px;
  text-align: center;
}

.fav-table th {
  background-color: #0000FF;
  color: white;
}

form {
  background-color: #f9f9f9;
  padding: 20px;
  margin: 20px auto;
  width: 60%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

form p, label {
  font-size: 1.2em;
  margin: 10px 0;
}

input, textarea, select, button {
  margin-top: 5px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
}


.nav__links{
  list-style: none;
}

.nav__links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav__links li a {
  transition: all 0.3s ease 0s;
  color: white;

}

.nav__links li a:hover {
  color: lightblue;
}

.PDFdownloadr{
  display: inline-flex;
  align-items: center;
  position: relative;
  fill: white;
}

.containerRes img{
  /* margin: auto;
  width: 50%; */
  border: 3px solid black;
  padding: 10px;
}

button {
  padding: 9px 25px;
  background-color: #7EC8E3;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  margin-left: 5px;
  margin: 5px;
}

button:hover {
  background-color: hsla(0, 50%, 100%, 0.3);
}

footer{
  position: fixed;
  left: 0; 
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 10%;
  background-color: #0000FF;
}

footer a{
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400; 
  color: white; 
  text-decoration: none;
}

#important {
  color: red;
  font-weight: bold;
}

.important {
  background-color: lightyellow;
  padding: 5px;
}

#floating-box {
  position: absolute;
  top: 150px;  
  right: 20px;
  background-color: lightblue;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
}

