.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 40px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 10;
}

.wrapper h1 {
  color: #333;
  font-size: 24px;
}

.wrapper ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.wrapper .link {
  text-decoration: none;
  color: #544541;
  font-weight: 500;
  font-size: 20px;
  transition: color 0.3s ease;
}

.wrapper .link:hover {
  color: #007bff;
}

.logo {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../images/p.png") no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 100px;
}

.wrapper .motto {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  flex: 1;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #544541;
}