@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
  /*outline: 1px dotted red;*/
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

html,
body {
  height: 100%;
  width: 100%;
}

main {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
	position: absolute;
	top: 0;
	width: 100%;
	padding: 2vh 6vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1;
}

nav a h1 {
	font-size: 3vh;
	font-family: "Nunito", serif;
	font-weight: 800;
	color: #000;
}

section h1 {
  font-size: 30vh;
  line-height: 1;
  text-transform: capitalize;
}

section p {
  font-size: 5vh;
  margin-bottom: 2vh;
}

@media (max-width: 768px) {
  nav a h1 {
    font-size: 18px;
  }
  img {
    position: absolute;
    top: 50px;
    width: 50%;
    z-index: 2;
  }
  .container {
    position: absolute;
    bottom: 50px;
    bottom: 0;
    z-index: 5;
  }
  .container h1 {
    font-size: 120px;
  }
  p{
    text-align: center;
  }
  .btn {
    font-size: 20px;
    text-decoration: underline;
  }
}