@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;600&display=swap");
.container {
  max-width: 1500px;
  padding: 0 30px;
  margin: 20px auto;
  overflow: auto;
}

.container-lighter {
  background-color: #009688;
}

nav {
  max-width: 1800px;
  margin: auto;
}

nav h1 {
  margin-left: 20px;
}

.btn-primary, .btn-secondary, .btn-third {
  display: inline-block;
  border-radius: 5px;
  padding: 8px 20px;
  margin: 3px;
}

.btn-primary:hover, .btn-secondary:hover, .btn-third:hover {
  transform: scale(0.98);
}

.btn-primary {
  background-color: #00c9b6;
}

.btn-secondary {
  background-color: #440096;
}

.btn-third {
  background-color: #00635a;
}

.btn-third:hover {
  background-color: #440096;
}

.showcase {
  background-color: #00635a;
  color: white;
  height: 470px;
}

.showcase nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  width: 100%;
  color: black;
}

.showcase nav ul {
  margin-left: 25px;
  display: flex;
  list-style-type: none;
}

.showcase nav li {
  padding: 15px;
  font-weight: 600;
  font-size: 1.2rem;
}

.showcase nav a {
  color: black;
}

.showcase nav a:hover {
  color: #440096;
  transition-duration: 0.5s;
}

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

body {
  background-color: #f4f4f4;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

main {
  min-height: calc(100vh - 60px);
}

img {
  width: 20%;
  margin: 0 0 0 70px;
}

a {
  text-decoration: none;
  color: #fff;
}

h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 2.5;
}

.showcase-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-content img {
  width: 27%;
  border-radius: 50%;
  border-color: #440096;
}

.showcase-content p {
  margin: 20px 0;
  font-size: 1.5rem;
}

.showcase-left {
  margin-right: 50px;
  width: 70%;
}

.info {
  height: 100%;
  background-color: #f4f4f4;
  color: black;
}

.info p {
  margin: 20px 0;
  font-size: 1.3rem;
}

.container-lighter {
  height: 400px;
  color: white;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-lighter p {
  margin: 10px 0;
}

.container-lighter img {
  width: 25%;
  border-radius: 50%;
  border-color: #440096;
}

.container-lighter .showcase-left {
  width: 70%;
}

.material {
  height: 400px;
}

.material img {
  border-radius: 45%;
  width: 15%;
  border-color: #009688;
}

.showcase-pages .showcase {
  height: 300px;
}

.showcase-pages .showcase-content {
  height: 240px;
  margin: auto;
}

.info a {
  color: #009688;
}

.info h3 {
  font-size: 1.5rem;
}

.info li {
  font-size: 1.3rem;
  list-style: none;
}

.info li a {
  color: #fff;
}

.footer {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c9fffa;
  width: 100%;
}

@media screen and (min-width: 1381px) {
  .showcase nav .hamburger {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1380px) {
  .showcase nav .hamburger {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 40px;
  }
  .showcase {
    height: 350px;
  }
  .showcase nav .hamburger {
    display: none;
  }
  .showcase-content .showcase-left {
    margin: 0;
    padding: 5px;
  }
  .showcase-content img {
    margin: 0;
    width: 40%;
  }
}

@media screen and (max-width: 500px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .showcase {
    height: 350px;
  }
  .showcase nav .hamburger {
    display: block;
    margin: 7px;
    cursor: pointer;
  }
  .showcase nav .menu {
    visibility: hidden;
  }
  .showcase nav .menu.show {
    top: 0;
    visibility: visible;
    display: block;
    background-color: #f4f4f4;
    position: absolute;
    z-index: 9;
  }
  .showcase-content .showcase-left {
    margin: 0;
    padding: 5px;
  }
  .showcase-content img {
    margin: 0;
    width: 40%;
  }
  .info p {
    font-size: 1.1rem;
  }
  .container-lighter {
    height: 270px;
  }
  .container-lighter p {
    font-size: 1.1rem;
  }
  .material p {
    font-size: 1.1rem;
  }
}
