* {
  /* variables */
  --background-primary: #f5f5f5;
  --background-secondary: #eef0f3;
  --background-tertiary: #d4d6da;

  --content-standard-primary: #222222;
  --content-standard-secondary: #555555;
  --content-standard-tertiary: #777777;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20pt;
  color: var(--content-standard-primary);
}
a {
  text-decoration: none;
  color: inherit;
}

/* modules */
.textbutton {
  width: fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.textbutton img {
  width: 32px;
  height: 32px;
}

/* layout */
body {
  background-color: var(--background-primary);
  display: flex;
  justify-content: center;
  height: 100vh;
  margin: 0;
}
.wrapper {
  background-color: var(--background-secondary);
  width: 1600px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.header {
  background-color: var(--background-tertiary);
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-radius: 16px;
}
.header-left {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.logo {
  width: 70px;
  height: 70px;
}
.logo:hover {
  cursor: pointer;
}
.logo img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-options {
  width: auto;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.admin-option {
  display: none;
}
.header-right {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.login-option,
.logout-option,
.account-option {
  display: none;
}
.main {
  padding: 0 16px;
}
