@import url('https://fonts.googleapis.com/css?family=Poppins');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #ededed;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 10%;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 30px;
  color: white;
  font-weight: 600;
}

.navbar a {
  font-size: 15px;
  color: white;
  font-weight: 500;
  margin-left: 35px;
  transition: color 0.3s, font-size 0.3s, box-shadow 0.15s;
}

.navbar.show a {
  margin: 10px 0;
}

.navbar a:hover {
  color: #00abf0;
  font-size: 17px;
}

.navbar a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #00abf0;
  opacity: 70%;
  transition: width 0.3s;
}

.navbar a:active {
  color: #0099d5;
}

.home {
  height: 100vh;
  background: url('mt.talamitam.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
}

.home-content {
  max-width: 600px;
  text-align: center;
}

.home-content h4 {
  font-weight: 600;
  line-height: 1.5;
}

.home-content h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
}

.home-content h3 {
  font-weight: 600;
  line-height: 1.2;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: small;
}


.header a:hover {
  color: #00abf0;
}

.header a:active {
  color: #0180b3;
}

.span-talamitam-peak:hover,
.span-lantik-peak:hover {
  color: #0099d5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
}

@media (max-width: 920px) {
  .home-content h4 {
    width: auto;
  }

  .home-content h1 {
    font-size: 40px;
    width: auto;
  }

  .home-content h3 {
    width: auto;
  }
}   

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

@media (max-width: 920px) {
  .navbar {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

.navbar.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 10%;
  background-color: rgba(0, 0, 0, 0.177);
  border-radius: 5px;
  padding: 10px;
}

.navbar.show a {
  margin: 10px 0;
}