body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #f2f2f2;
}
/* HEADER CONTAINER */
.Header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; 
  border-bottom: 3px solid black;
  padding: 10px 3%;
  background-color: #fff;
}
/* LOGO */
.UofC-Logo {
  width: 180px;
  height: auto;
}

/* NAV LINKS */
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* BUTTON LINKS */
a {
  padding: 8px 16px;
  border-radius: 8px;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  color: #000;
  background-color: #fff;
  border: white 2px solid;
  cursor: pointer;
  transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
  width: fit-content;
}

a:hover {
  background-color: #ee0e2c;
  color: white;
}

/* LOGIN / SIGNUP STACK */
.Login-Signup {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.Login:hover,
.Signup:hover {
  background-color: white;
  border: 2px solid #ee0e2c;
  color: #ee0e2c;
  text-decoration: underline;
}

/* LOGIN BOX */
.login-container {
  width: 380px;
  background: white;
  margin: 80px auto;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 2px solid black;
  display: inline-block;
  padding-bottom: 3px;
}