body {
  margin: 1.5em;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  font-size: 1.3rem;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  background: url("anirudh-KmQbT4FQvGQ-unsplash.jpg");
  background-size: cover;
  background-position-x: 20%;
  background-position-y: 20%;
  width: 100%;
  height: 100vh;
  z-index: -1;
  animation: introLoad 2s forwards;
  overflow: hidden;
}

.logo {
  color: white;
  font-weight: bold;
}

nav {
  position: fixed;
  right: 0;
  top: 0;
  background: white;
  height: 100vh;
  width: 50%;
  z-index: 999;
  text-transform: uppercase;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 8em;
}
nav ul a {
  color: black;
  padding: 0.75em 2em;
  display: block;
}
nav ul a:hover {
  background: rgb(235, 235, 235);
}
nav .close {
  float: right;
  margin: 2em;
  width: 2.5em;
}

header {
  display: flex;
  justify-content: space-between;
}
header svg {
  width: 2.3em;
  margin-top: -0.6em;
  cursor: pointer;
}

.content {
  margin: 1.5rem;
  padding: 1.5rem;
  display: block;
}
.content h1 {
  font-size: 40px;
  color: white;
  text-align: center;
}
.content .desc {
  padding: 0.5rem;
  color: white;
}

.styled-button {
  display: block;
  margin-left: 100px;
  width: 220px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #ffffff; /* Text color */
  background-color: #414141; /* Background color */
  cursor: pointer;
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Smooth transition */
}

/* Hover effect */
.styled-button:hover {
  background-color: #3f3f3f; /* New background color on hover */
  color: #ffffff; /* New text color on hover */
}

.open-nav {
  transform: translateX(0%);
}

@media only screen and (min-width: 680px) {
  .content {
    padding: 2em;
    margin: 2em;
  }
  .content h1 {
    color: white;
    text-align: center;
    font-size: 40px;
  }
  .styled-button {
    margin-left: 180px;
  }
}
@media only screen and (min-width: 600px) {
  .content h1 {
    font-size: 70px;
  }
  .content .desc {
    text-align: center;
  }
  .styled-button {
    margin-left: 170px;
  }
}
@media only screen and (min-width: 800px) {
  .content h1 {
    font-size: 70px;
    margin-left: 65px;
  }
  .content .desc {
    text-align: center;
  }
  .styled-button {
    margin-left: 320px;
  }
}
@media only screen and (min-width: 920px) {
  .content h1 {
    font-size: 70px;
  }
  .content .desc {
    text-align: center;
    margin-left: 25px;
  }
  .styled-button {
    margin-left: 350px;
  }
}
@media only screen and (min-width: 1020px) {
  .menu {
    display: none;
  }
  nav {
    transform: translateX(0);
    position: unset;
    display: block;
    width: auto;
    height: auto;
    background: none;
  }
  nav svg.close {
    display: none;
  }
  nav ul {
    display: flex;
    margin: 0;
  }
  nav ul a {
    color: white;
    padding: 0.5em 1.5em;
    font-size: 0.9rem;
  }
  nav ul a:hover {
    background: none;
    text-decoration: underline;
  }
  .content h1 {
    font-size: 70px;
  }
  .content .desc {
    text-align: center;
  }
  .styled-button {
    margin-left: 420px;
  }
}
@media only screen and (min-width: 1150px) {
  .styled-button {
    margin-left: 480px;
  }
}
@media only screen and (min-width: 1220px) {
  .content h1 {
    font-size: 80px;
    margin-left: 10px;
  }
  .content .desc {
    text-align: center;
  }
  .content .styled-button {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 1250px) {
  .styled-button {
    margin-left: 465px;
  }
}
@media only screen and (min-width: 1280px) {
  .content h1 {
    font-size: 85px;
    margin-left: -25px;
  }
  .content .desc {
    text-align: center;
  }
  .content .styled-button {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 1290px) {
  .styled-button {
    margin-left: 600px;
  }
}
/* Basic styling for the button *//*# sourceMappingURL=email.css.map */