header {
  height: 170px;
  background-color: white;
  color: rgb(106, 103, 103);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .header-content {
  width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-content .logo {
  width: 120px;
  height: 120px;
  margin-right: 10px;
  flex-shrink: 0;
}
header .header-content .logo img {
  max-width: 100%;
  max-height: 100%;
}
header .header-content .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-content .menu ul {
  list-style: none;
  display: flex;
  padding-left: 0;
  gap: 40px;
}
header .header-content .menu ul li {
  margin-bottom: 10px;
}
header .header-content .menu ul li a {
  text-decoration: none;
  color: #777;
  font-size: 20px;
  font-weight: 700;
}
header .header-content .menu ul li a.active {
  color: #3848c6;
}

footer {
  height: 300px;
  width: 100%;
  margin-top: 100px;
}
footer .footer-upper-part {
  height: 75%;
  background-color: #222;
  display: flex;
  justify-content: center;
}
footer .footer-upper-part .footer-menu, footer .footer-upper-part .footer-contacts {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
footer .footer-upper-part .footer-menu h6, footer .footer-upper-part .footer-contacts h6 {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
}
footer .footer-upper-part .footer-menu p, footer .footer-upper-part .footer-contacts p {
  color: #BBB;
  font-size: 19px;
  font-weight: 400;
}
footer .footer-upper-part .footer-menu ul {
  list-style: none;
}
footer .footer-upper-part .footer-menu ul a {
  text-decoration: none;
  color: #BBB;
  font-size: 19px;
  font-weight: 400;
  line-height: 40px;
}
footer .footer-upper-part .footer-contacts {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer-upper-part .footer-contacts p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 40px;
}
footer .footer-upper-part .footer-contacts img {
  max-width: 100%;
  max-height: 100%;
}
footer .footer-lower-part {
  height: 25%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-lower-part p {
  margin-top: 0;
  margin-bottom: 0;
  color: white;
}

body {
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: "ui-sans-serif", system-ui, sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.stripe {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin-bottom: 70px;
}

.main-content {
  width: 960px;
  height: 100%;
  margin: 0 auto;
}
.main-content h1 {
  margin-top: 0;
  margin-bottom: 30px;
  color: #444;
  font-weight: 600;
}
.main-content h2 {
  color: #444;
}
.main-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #444;
}
.main-content .text p {
  color: #777;
  font-size: 17px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  text-align: justify;
}
.main-content .text .newLine {
  margin-bottom: 15px;
}
.main-content .graphic-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-content .text-list {
  padding-left: 65px;
}
.main-content .graphic-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.main-content .events {
  margin-top: 35px;
  width: 100%;
}
.main-content #eventList {
  list-style: none;
  padding: 0;
  width: 100%;
}
.main-content #eventList .signupBtn {
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  width: 25%;
}
.main-content #eventList li {
  border: 1px solid #ddd;
  padding: 10px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.main-content #eventList li .deleteEventBtn {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.main-content #eventList li p {
  margin: 10px 0;
  color: #555;
}
.main-content form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 20px auto;
  background-color: #f2f2f2;
  padding: 20px;
}
.main-content form label {
  margin-bottom: 10px;
}
.main-content form input[type=hidden] {
  display: none;
}
.main-content form input[type=email],
.main-content form input[type=text] {
  margin-bottom: 10px;
  padding: 8px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
.main-content form input[type=number] {
  margin-bottom: 10px;
  padding: 8px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
.main-content form textarea {
  margin-bottom: 10px;
  padding: 8px;
  font-size: 14px;
  height: 100px;
  width: 100%;
  box-sizing: border-box;
  resize: none;
}
.main-content form button[type=submit] {
  background-color: #3498db;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  border: none;
  transition: background-color 0.3s;
}
.main-content form button[type=submit]:hover {
  background-color: #2078a4;
}

/*# sourceMappingURL=workshopy.css.map */
