@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
}

nav {
  height: 10vh;
  text-align: center;
  line-height: 10vh;
}
nav span {
  color: rgb(0, 255, 128);
}

.container {
  height: 90vh;
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 1s;
  width: 100%;
}
.container .img {
  background: url("../img/01.jpg");
  background-size: cover;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container .img .anim1 {
  color: #fff;
}
.container .img h1 {
  font-size: 3.5rem;
  font-weight: 600;
}
.container .img .b {
  margin-top: -10px;
  margin-bottom: 30px;
}
.container .img a {
  color: #000 !important;
  font-weight: 500;
  background: #fff;
  padding: 12px 30px;
  border: 2px solid #fff;
  transition: 0.3s;
  cursor: pointer;
}
.container .img a:hover {
  background: transparent;
  color: #fff !important;
}

@media (max-width: 450px) {
  h1 {
    font-size: 2.2rem !important;
  }
  a {
    padding: 6px 20px;
  }
}