* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bricolage Grotesque", sans-serif;
}

body {
  background-color: #ffffff;
  color: #303030;
}

header {
  background-color: #ffffff;
  padding: 1.25rem 3rem 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 10px 3px #a6a6a660;
  z-index: 1000;
  position: sticky;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ef8508;
}

nav {
  display: flex;
  gap: 4rem;
  align-items: center;
}

nav > a {
  text-decoration: none;
  color: #303030;
  font-size: 1rem;
}

nav > a:hover {
  color: #ef8508;
  text-decoration: underline;
}

.profile-icon {
  align-items: center;
  height: 24px;
  width: 24px;
  display: flex;
}

.profile-icon a {
  align-items: center;
  height: 100%;
  width: 100%;
}

.profile-icon img {
  height: 1.8rem;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-icon img:hover {
  transform: scale(1.1);
  transition: 0.2s;
  box-shadow: 0 4px 16px rgba(255, 225, 98, 0.4);
}

footer {
  display: flex;
  justify-content: space-between;
  background-color: white;
  padding: 1rem 2rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  padding: 1.25rem 3rem 1.25rem 3rem;
}

.socials {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.socials a {
  align-items: center;
  height: 100%;
  width: 100%;
}

.socials img {
  align-items: center;
  height: 1rem;
  width: 1rem;
}
