* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

button {
  user-select: none;
}

button, input, select, textarea {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 400;
}

body {
  line-height: 1.5;
  color: #333;
  font-family: Verdana, sans-serif;
  font-size: 15px;
}
body header {
  position: fixed;
  z-index: 1;
  width: 100%;
  color: #000;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  letter-spacing: 4px;
}
body header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1540px; /* adding padding width on both sides */
  height: 54px;
  padding: 0 20px;
  margin: 0 auto;
}
body header nav .header-left, body header nav .header-right {
  display: flex;
}
@media (max-width: 680px) {
  body header nav .header-left.header-right, body header nav .header-right.header-right {
    display: none;
  }
}
body header nav .header-left a, body header nav .header-right a {
  height: 23px;
  border-bottom: 1px solid transparent;
  color: #000;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}
body header nav .header-left a:not(:first-of-type), body header nav .header-right a:not(:first-of-type) {
  margin-left: 46px;
}
body header nav .header-left a:hover, body header nav .header-right a:hover {
  border-color: #000;
}
body header nav .header-left a.active, body header nav .header-right a.active {
  border-color: #000;
}
body main {
  max-width: 1540px; /* adding padding width on both sides */
  padding: 0 20px 8px 20px;
  margin: 0 auto;
}
body main section#heading-hero {
  overflow: hidden;
}
body main section#heading-hero img {
  display: block;
  width: 1500px;
  height: 400px;
  padding-top: 54px;
}
body main section h3 {
  padding-top: 58px;
  padding-bottom: 16px;
  margin-bottom: 31px;
  border-bottom: 1px solid #f1f1f1;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
}
body main section#about > div#about-info {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 720px) {
  body main section#about > div#about-info {
    flex-direction: column;
  }
}
body main section#about > div#about-info img {
  width: 300px;
}
body main section#about > div#about-info div#description-and-download {
  display: block;
  margin-left: 31px;
}
@media (max-width: 720px) {
  body main section#about > div#about-info div#description-and-download {
    margin-left: 0;
  }
}
body main section#about > div#about-info div#description-and-download p {
  margin: 15px 0;
}
body main section#about > div#about-info div#description-and-download a[download] {
  display: block;
  width: fit-content;
  padding: 8px 16px;
  border: none;
  color: #000;
  background-color: #f1f1f1;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}
body main section#about > div#about-info div#description-and-download a[download]:hover {
  background-color: #ccc;
}
body main section#about > div#about-info div#description-and-download a[download] .icon-and-text {
  display: flex;
  align-items: center;
}
body main section#projects .content {
  display: none;
}
body main section#projects .content.active {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  gap: 16px;
}
body main section#projects .content.active .project {
  display: flex;
  flex: 1 1 calc(25% - 16px); /* Removing gap from last element in both rows */
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  body main section#projects .content.active .project {
    flex: 1 1 calc(50% - 16px); /* Removing gap from last element in both rows */
  }
}
@media (max-width: 600px) {
  body main section#projects .content.active .project {
    flex: 1 1 calc(100% - 16px); /* Removing gap from last element in both rows */
  }
}
body main section#projects .content.active .project a img {
  display: block;
  width: 100%;
  height: auto;
}
body main section#projects .content.active .project a img.darker {
  filter: brightness(96%);
}
body main section#projects .content.active .project h2 {
  margin-top: 10px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
}
body main section#projects .content.active .project p.tags {
  margin-top: 15px;
  opacity: 0.6;
}
body main section#projects .content.active .project p.description {
  margin-top: 15px;
}
body main section#projects .content.active .project .button-container {
  display: flex;
  margin-top: 15px;
  gap: 10px;
}
body main section#projects .content.active .project .button-container a.project-button {
  width: 100%;
  padding: 8px 16px;
  color: #000;
  background-color: #f1f1f1;
  user-select: none;
  text-align: center;
  text-decoration: none;
}
body main section#projects .content.active .project .button-container a.project-button:hover {
  background-color: #ccc;
}
body main section#projects .pagination {
  display: flex;
  justify-content: center;
  width: 100%;
}
body main section#projects .pagination a {
  float: left;
  padding: 8px 16px;
  color: #000;
  user-select: none;
  text-decoration: none;
}
body main section#projects .pagination a:hover:not(.active) {
  background-color: #ddd;
}
body main section#projects .pagination a.active {
  color: white;
  background-color: #000;
}
body main section#projects .pagination a.clicked {
  color: white;
  background-color: #000;
}
body main section#contact .texts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body main section#contact .texts-container p {
  margin-bottom: 15px;
}
body main section#contact .texts-container .icons-container {
  display: flex;
  flex-wrap: wrap;
}
body main section#contact .texts-container .icons-container .icon-and-text {
  display: flex;
}
body main section#contact .texts-container .icons-container .icon-and-text i {
  margin-right: 5px;
  user-select: none;
}
body main section#contact .texts-container .icons-container .icon-and-text span {
  margin-bottom: 15px;
}
body main section#contact .texts-container .icons-container .icon-and-text:first-of-type {
  margin-right: 32px;
}
body main section#contact form input, body main section#contact form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
}
body main section#contact form input {
  margin-bottom: 16px;
}
body main section#contact form textarea {
  display: block;
  margin-bottom: 32px;
}
body main section#contact form button {
  display: inline-block;
  padding: 8px 16px;
  border: none;
  color: #fff;
  background-color: #000;
  cursor: pointer;
}
body main section#contact form button:hover {
  color: #000;
  background-color: #ccc;
}
body main section#footer-hero {
  overflow: hidden;
}
body main section#footer-hero img {
  display: block;
  width: 1500px;
  height: 400px;
  padding-top: 48px;
}
body footer {
  padding-top: 16px;
  padding-bottom: 16px;
  color: #fff;
  background-color: #000;
  text-align: center;
}
body footer .icons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
body footer .icons a img {
  display: block;
  width: 45px;
}
body footer p {
  margin-top: 15px;
  margin-bottom: 15px;
}

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