@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

main {
  background-color: #ccd0e3;
}

.content-container {
  margin: 2rem 5rem;
  background-color: white;
  text-align: left;
  justify-items: center;
}

.content-body {
  padding: 5% 10%;
  width: 100%;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: bolder;
  padding: 3% 3% 0 3%;
}

p {
  color: #324158;
}

.bc-info,
.pushbullet-info,
.bark-connect-info,
.bc-google-play-info,
.customize-messages-info {
  padding: 3%;
  font-family: "Poppins", sans-serif;
}

/* Bark Connect Info Header */
.bc-info {
  font-family: "Poppins", sans-serif;
}

/* Pushbullet Info */
.push-info-header {
  display: flex;
  align-items: center;
}

.push-info-header h2 {
  padding: 0 1rem;
}

/* Pushbullet Guide Image */
.pushbullet-guide-img {
  justify-self: center;
}

/* Bark Connect Info */
.bc-info-header {
  display: flex;
  align-items: center;
}

.bc-info-header h2 {
  padding: 0 1rem;
}

/* Google Play Info */
.bc-google-play-info {
  width: 50vw;
  justify-self: center;
  text-align: center;
}

.download-button-container {
  padding: 1rem;
}

.bc-google-play-download img {
  display: inline-block;
  /* padding: 0.75rem 1.5rem; */
  background-color: rgb(39, 41, 111);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  width: 270px;
  height: auto;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.bc-google-play-download img:hover {
  background-color: #4682b4;
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.bc-google-play-download img:active {
  background-color: #315f7d;
  transform: scale(0.98);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Customize Messages Info */
.customize-guide-img {
  justify-self: center;
  padding: 3% 0;
}

/* Adjust Image Size */
.customize-guide-img img, .pushbullet-guide-img img {
  width: 50vw;
  height: auto;
}

/* Small Screens */
@media screen and (max-width: 576px) {
  main {
    margin: 0;
  }

  h1 {
    font-size: 2rem;
  }

  .content-container {
    margin: 2rem 1rem;
  }

  .bc-info,
  .pushbullet-info,
  .bark-connect-info,
  .bc-google-play-info,
  .customize-messages-info {
    padding: 6% 3%;
  }

  .bc-google-play-info {
    width: 80vw;
  }

  .customize-guide-img img, .pushbullet-guide-img img {
    width: 80vw;
    height: auto;
  }

  .bc-google-play-download img {
    width: 180px;
    border-radius: 10px;
  }
}
