* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.home {
  min-height: 100vh;
  width: 100%;
}
a {
  text-decoration: none;
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;
}
nav a {
  z-index: 2;
}
.logo {
  height: 40px;
  margin: 10px;
}
.ham-menu {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0px;
  right: 10px;
  margin: 20px;
  cursor: pointer;
  z-index: 2;
  visibility: hidden;
}
.ham-menu span {
  height: 4px;
  width: 100%;
  position: absolute;
  background-color: #222;
  border-radius: 25px;
  top: 50%;
  transition: 0.3s ease;
}
.ham-menu span:nth-child(1) {
  top: 25%;
}
.ham-menu span:nth-child(3) {
  top: 75%;
}
.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
  opacity: 0;
}
.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}
.off-screen-menu {
  background-color: #009fe3;
  height: 100vh;
  width: 110%;
  position: fixed;
  transform: translate(100%, 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 32px;
  transition: 0.3s ease;
  z-index: 1;
  visibility: hidden;
}
.off-screen-menu.active {
  transform: translate(-10%, 75px);
}
.off-screen-menu ul {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 20px;
}
.off-screen-menu ul li {
  display: flex;
  margin: 20px;
  font-size: 48px;
}
.off-screen-menu ul li a {
  color: #ffffff;
}
@media (max-width: 700px) {
  .logo {
    height: 30px;
  }
  .ham-menu {
    height: 30px;
    width: 30px;
  }
  .ham-menu span {
    height: 3px;
  }
  .off-screen-menu {
    transform: translate(100%, 64px);
  }
  .off-screen-menu.active {
    transform: translate(-10%, 64px);
  }
}
.navbar ul {
  position: absolute;
  top: 0;
  right: 0;
  margin: 16px;
}
.navbar ul li {
  display: inline-block;
  font-weight: bold;
  margin: 20px;
  position: relative;
}
.navbar ul li a {
  color: #222;
}
.navbar ul li a:hover {
  color: #009fe3;
}
.navbar ul li:not(:last-child)::after {
  content: "";
  border: solid #000;
  border-width: 2px 2px 0 0;
  position: absolute;
  right: -25px;
  top: -2px;
  height: 100%;
}
@media (max-width: 919px) {
  .ham-menu,
  .off-screen-menu {
    visibility: visible;
  }
  .navbar {
    visibility: hidden;
  }
}
.info {
  align-items: center;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 50px auto 50px auto;
  width: 100%;
  max-width: 1000px;
}
.info h2 {
  font-size: 48px;
  color: #009fe3;
  margin: 20px;
}
.info-text {
  margin: 20px;
  font-size: 18px;
}
.info-text p {
  margin: 20px;
}
.info-img {
  margin: 20px;
}
.info-img img {
  max-width: 800px;
}
@media (max-width: 1000px) {
  .about-img {
    margin: 10px;
  }
  .about-img img {
    width: 100%;
  }
}
footer {
  margin: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.links {
  text-decoration: none;
  list-style: none;
  text-align: left;
}
.links ul {
  list-style: none;
}
.links ul li {
  margin-bottom: 10px;
}
.links ul li a {
  color: #009fe3;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 20px;
}
