@font-face {
  font-family: "Impress"; 
  src: url(Impress.ttf) 
}

@font-face {
  font-family: "BowlbyOneSC-Regular";
  src: url(BowlbyOneSC-Regular.ttf)
}

body {
  margin: 0;
  font-family: Impress, sans-serif;
  font-size: 18px;
  background-color: #3eaaf2;
  background-image: url(cloudsagainn2.png);
  color: white;
}

.boddy {
 padding-left: 30px;
 padding-right: 30px;
}

h1 {
  font-family: BowlbyOneSC-Regular, sans-serif;
  font-size: 40px;
  text-align: center;
  background-color: white;
  color: black;
  border: 8px solid #f2dc3e;
  border-radius: 8px;
  padding: 40px 20px;
  overflow-wrap: break-word;
  box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

h2 {
  font-family: BowlbyOneSC-Regular, sans-serif;
  text-align: center;
}

table, th, td {
  padding: 5px;
  overflow-wrap: break-word;
}
table {
  border: 3px solid;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
th {
  border: 2px solid;
  text-align: center;
  background-color: #f2dc3e;
  color: white;
}
td {
  border: 2px solid;
  border-color: #a4b8d8;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  text-align: left;
  vertical-align: top;
  background-color: white;
  color: #779bd5;
}

td a:link {
  color: #89e01f;
}

td a:visited {
  color: #f1920e;
}

td a:hover {
  color: #f5b356;
}

a:link {
  color: #f6d66f;
}
a:visited {
  color: #66b517;
}
a:hover {
  color: #c2dd2b;
}

button {
  font-family: Impress, sans-serif;
  font-size: 26px;
  padding: 10px 20px;
  background-color: white;
  border: 4px solid #f0d718;
  border-radius: 8px;
  transition-duration: 0.2s;
  cursor: pointer;
  box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
button:hover {
  background-color: #f0d718;
  color: white;
}

footer {
  font-family: Impress, sans-serif;
  position: static;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #bfd9ff;
  color: #40abf2;
  text-align: center;
}

a:link.footerlink {
  color: #1196ee;
}
a:visited.footerlink {
  color: #1196ee;
}
a:hover.footerlink {
  color: #ffffff;
}

.topnav {
  overflow: hidden;
  background-color: #fff;
  border: 4px solid #f2dc3e;
  border-radius: 8px;
  box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.topnav a {
  float: left;
  display: block;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 18px;    
  border: none;
  outline: none;
  color: #000;
  padding: 14px 16px;
  border-radius: 0px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #e6f0ff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #f2dc3e;
  color: white;
}

.dropdown-content a:hover {
  background-color: #66a3ff;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

