* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.login {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
body {
  display: flex;
  height: 100vh;
  flex-direction: column;
  font-family: Arial, sans-serif;
}
header {
  background-color: #333;
  color: white;
  text-align: center;
  width: 100%;
  height: 175px;
  display: grid;
  place-items: center;
}
.header {
  position: relative;
  background-image: url(/gfx/bg.jpg);
  color: white;
  background-position: center;
  background-size: cover;
  text-align: center;
  height: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 1000px;
  padding: 0 20px;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.logo {
  background-image: url(/gfx/logo.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  width: 125px;
  height: 125px;
  position: relative;
  z-index: 2;
  margin: 5px;
}
nav {
  height: 50px;
  display: flex;
  width: 100%;
  z-index: 2;
}
.menu {
  width: 50%;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
}
.active {
  background-color: white;
  color: black;
}
main {
  display: flex;
  justify-content: center;
  align-items: start;
  height: 100%;
  flex: 1;
  background-color: #f4f4f4;
}
.main {
  width: 1000px;
  text-align: center;
  padding: 40px;
}
.profile-pic {
  background-image: url("/gfx/dog.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.login-form,
.register-form {
  display: none;
  flex-direction: column;
  align-items: center;
}
.login-form.active,
.register-form.active {
  display: flex;
  background-color: transparent;
}
input {
  width: 300px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.login-form button,
.register-form button {
  padding: 10px 20px;
  background-color: blue;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  width: 300px;
}
.forgot-password {
  text-align: right;
  margin-top: 10px;
  font-size: 12px;
}
.forgot-password a {
  text-decoration: none;
  color: black;
}
footer {
  background-color: #333;
  color: white;
  display: flex;
  justify-content: center;
  padding: 15px 0;
}
.footer {
  width: 1000px;
  text-align: right;
}

.chartRow {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}


