* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #cfe9ee;
  background-image: url("Pochaccoo.jpg");
  background-size: 800px;
  background-repeat: repeat;
  background-attachment: fixed;
  color: #2c3e50;
}

/* NAVBAR */
.navbar {
  background-color: rgba(190, 220, 230, 0.95);
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #9fcdd9;
}

.navbar-left img {
  height: 35px;
}

.navbar-right {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}

.navbar-right a {
  color: #355f75;
  text-decoration: none;
  font-weight: 600;
}

/* MAIN */
.home-card {
  max-width: 1000px;
  margin: 2.5em auto;
  padding: 2em;
  background-color: rgba(200, 230, 240, 0.6);
  border-radius: 22px;
}

/* CARDS */
.resource-card {
  background-color: rgba(215, 238, 245, 0.85);
  margin: 2em auto;
  padding: 2em;
  border-radius: 20px;
  border: 2px solid #9fcdd9;
}

/* BIO */
.bio {
  text-align: center;
}

.bio-pic img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #8cc2d1;
  background-color: white;
}

/* CONTACT */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 3em;
  text-align: center;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 0.5em;
  border-radius: 14px;
  background-color: white;
  border: 2px solid #8cc2d1;
}

.contact-item a {
  color: #355f75;
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 0.85em;
  color: #355f75;
}
