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

body,
html {
  height: 100%;
  font-family: "Inter", sans-serif;
}

.container {
  background-image: url("../images/overlay.png");
  background-size: cover;
  background-position: center;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0 20px;
}

header {
  width: 100%;
  padding: 0 14% 0 14%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

nav .go-to-app {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border: none;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}

nav .go-to-app:hover {
  background-color: #e0e0e0;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  color: white;
  margin-bottom: 30px;
  font-size: 56px;
  font-weight: 400;
  line-height: 67.2px;
  text-align: center;
}

.appstore-button {
  margin-bottom: 40px;
  cursor: pointer;
}

.iphone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.iphone-image {
  z-index: 1;
}

.glow {
  position: absolute;
  top: 10%;
  left: 66%;
  width: 315px;
  height: 412px;
  background: radial-gradient(
    circle at 0% 50%,
    rgba(255, 226, 152, 0.7) 0%,
    rgba(255, 226, 152, 0.1) 70%
  );
  border-radius: 50%;
  transform: rotate(2deg);
  z-index: 0;
  filter: blur(10px);
}

.glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 0% 50%,
    rgba(255, 226, 152, 0.8) 0%,
    rgba(255, 226, 152, 0.2) 60%
  );
  border-radius: 50%;
  transform: rotate(45deg);
  filter: blur(20px);
  z-index: -1;
}

.glow::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 450px;
  height: 550px;
  background: radial-gradient(
    circle at 40% 50%,
    rgba(255, 226, 152, 0.8) 0%,
    rgba(255, 226, 152, 0) 90%
  );
  border-radius: 50%;
  filter: blur(30px);
  z-index: -2;
}

.wrapper {
  position: relative;
  width: 100%;
}

.company-info {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 400;
  font-size: 12px;
}

@media (max-width: 768px) {
  header {
    padding: 0 5%;
  }

  nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }

  nav a,
  .go-to-app {
    margin-bottom: 10px;
  }

  .iphone-image {
    width: 350px;
  }

  h1 {
    font-size: 40px;
  }

  .appstore-button {
    width: 100px;
    cursor: pointer;
  }

  .glow {
    width: 80px;
    height: 50px;
    left: 90%;
    top: 20%;
  }

  .glow::before {
    width: 30px;
    height: 50px;
  }

  .glow::after {
    width: 70px;
    height: 80px;
  }
}
