/* Color Palette:
White: #fffff9
Black: 0F101A
Red: E0293E
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  background-color: #fffff9;
  font-family: 'Poppins', sans-serif;
  color: #0F101A;
  /* border: solid red 1px; */
}

html {
  padding: 20px;
}

body {
  max-width: 900px;
  margin: auto;
}

a, strong, em {
  color: #E0293E;
  text-decoration: none;
}

a:hover {
  font-weight: bold;
}

hr {
  height: 2px;
  background: #0F101A;
  border-radius: 5px;
  border: none;
  margin: 10px;
}

header {
  text-align: center;
}

header img {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  margin: 5px;
  border: solid rgba(124, 200, 244, 0) 5px;
}

header img:hover {
  border: solid rgba(124, 200, 244, 0) 0px;
  width: 235px;
  height: 235px;
}

header h1 {
  padding: 0px;
  margin: 0px;
  font-size: 52pt;
}

header p {
  background-color: #0F101A;
  margin: auto;
  width: fit-content;
  padding: 7px;
  border-radius: 5px;
  color: #fffff9;
  font-weight: 600;
}

main section h3, main section h2, footer {
  text-align: center;
}

#nav {
  text-align: center;
  margin: auto;
}

#reading-grid {
  display: grid;
  grid-template: 1fr / repeat(2, 1fr);
}

#reading-grid h3 {
  text-align: center;
}

#announcement {
  text-align: center;
  border: solid 2px #E0293E;
  padding: 5px;
  border-radius: 10px;
}
