@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,400;0,600;1,400&family=PT+Serif:ital,wght@0,400;0,700;1,400&family=Source+Code+Pro:ital,wght@0,400;0,600;1,200&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  width: 100vw;
  height: 100vh;
}

#header_h1 {
  font-family: "PT Serif", serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 20px;
  text-align: center;
}

.head-sub {
  padding-top: 10px;
  text-align: center;
}

.navbar {
  background-color: #404040;
  border-radius: 0;
  box-shadow: 2px 4px 10px rgba(82, 82, 122, 0.58);
  display: flex;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

.navlist {
  list-style-type: none;
}

.navlist .list-items {
  display: inline-block;
  letter-spacing: 2px;
  padding: 15px;
  padding-right: 20px;
}

a {
  color: #88d4f2;
  margin: 6px;
  text-decoration: none;
}

a:hover {
  color: #cee1f2;
}

main {
  width: 100%;
}

picture {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 50vh;
  width: 100vw;
  justify-content: center;
  flex-direction: column;
  padding: 2vw;
}

.home_article {
  display: flex;
  display: inline-block;
  font-size: 14px;
  margin: 10px;
  padding: 20px;
  width: 100%;
}

h2 {
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.article-header {
  padding-top: 20px;
}

iframe {
  padding-top: 20px;
}

p {
  font-family: "Source Code Pro", monospace;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 2px;
}

footer {
  background-color: #404040;
  color: #ebe8ec;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 0.5rem;
  display: flex;
  flex: auto;
  justify-content: space-evenly;
  position: static;
  bottom: 0;
  left: 0;
  width: 100%;
  text-transform: uppercase;
}
.contact {
  margin-bottom: 21vh;
}

.container {
  width: 400px;
  margin: 0 auto;
  padding: 20px;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 10px;
  resize: vertical;
}

input[type="submit"] {
  background-color: #38bdf2;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #145952;
}

/* Alerts page specific styling */

.alert {
  width: 800px;
  margin: 0 auto;
  padding: 60px;
  background-color: #f2cb38;
  border: 1px solid #e5b82e;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 49vh;
}

.alert h2 {
  color: #404040;
}

.alert p {
  color: #404040;
}

.padding-extra-top {
  padding-top: 30px;
}

.alert button {
  background-color: #38bdf2;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.alert button:hover {
  background-color: #88d4f2;
}

/* Assistance page specific styling */

.assitance {
  margin-bottom: 36vh;
}

.volunteer {
  margin-bottom: 30vh;
}

section {
  margin-bottom: 10px;
}

section h2 {
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

section form {
  width: 500px;
  margin: 0 auto;
}

section label {
  display: block;
  font-family: "Source Code Pro", monospace;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

section input[type="radio"] {
  margin-right: 5px;
}

section input[type="number"] {
  width: 80px;
}

/* Volunteer page specific styling */
x section input[type="tel"] {
  width: 100%;
}

section textarea {
  height: 100px;
  resize: vertical;
}
