/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #002147;
  color: white;
  font-family: 'Poppins', sans-serif;
  margin: auto;
}

a {
  color: white;
  font-family: 'Poppins', sans-serif;
}

p {
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
}

h1 {
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
}

h2 {
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
}

h3 {
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
}

h4 {
    margin-left: 50px;
    margin-right: 50px;
}



.alert {
  padding: 20px;
  background-color: orange; /* Red */
  color: white;
  margin-bottom: 0px;
  font-family: 'Lato', sans-serif;
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}

div {
  background-color: #189bcc;
  color: white;
  font-family: 'Lato', sans-serif;
  margin: auto;
}

.urgentalert {
  padding: 20px;
  background-color: #e2062c;
  color: white;
  margin-bottom: 0px;
  font-family: 'Lato', sans-serif;
}

.goodupdate {
  padding: 20px;
  background-color: #3cb371;
  color: white;
  margin-bottom: 0px;
  font-family: 'Lato', sans-serif;
}

.info {
  padding: 20px;
  background-color: #035096;
  color: white;
  margin-bottom: 0px;
  font-family: 'Lato', sans-serif;
}

.button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #00416a;
  color: white;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 12px
}

img {
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    height: auto;
}


