@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&display=swap');
@font-face {
  font-family: 'EFCO';
  src: url('./font/EFCO-Overhold.otf') format('opentype');
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #dddada;
  width: auto;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.headertitle {
  margin: 0 0 0 10px;
  font-size: 2.5em;
  cursor: pointer;
  font-family: 'EFCO', sans-serif;
}

.headerimg {
  width: 50%;
  height: auto;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 15px;
}

.navbtn {
  padding: 10px;
  border: none;
  background-color: #cbc8c8;
  color: black;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.5em;
  font-weight: bold;
  transition: background 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.navbtn:hover {
  background-color: #a3a3a3;
}

#footer {
  background-color: #DCDADA;
  z-index: 99999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  bottom: 0;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
  flex-direction: row;
  position: relative;
  justify-content: space-around;
  padding: 20px 0;
}

.footer-title {
  font-size: 1.7em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}


.footer-a {
  color: #000;
  font-size: 1em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-a:hover {
  color: #a3a3a3;
}

.footer-1, .footer-2, .footer-3, .footer-4 {
  max-width: 200px;
}

.footer-4 {
  position: relative;
}

.footer-4 .footer-a {
  display: flex;
  align-items: center;
}
