body {
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.5;
  font-weight: 900;
}

h2 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  color: #8f8f8f;
}

#title .container-fluid {
  padding: 3% 15% 7%;
  text-align: left;
}

.colored-section {
  background-color: #ff4c68;
  color: #fff;
}

.white-section {
  background-color: white;
}

/* Navigation Bar */
.navbar {
  padding: 0 0 4.5rem;
}

.navbar-brand {
  font-family: "Ubuntu";
  font-size: 2.5rem;
  font-weight: 900;
}

.nav-item {
  padding: 0 18px;
}

.nav-link {
  font-family: "Montserrat";
  font-weight: 100;
  font-size: 1.2rem;
}

/* Download Buttons */
.download-button {
  margin: 5% 3% 5% 0;
}

/* Title Image */
.title-image {
  width: 60%;
  transform: rotate(25deg);
  position: absolute;
  right: 30%;
}

/* Denna behövdes för att inte bilden skulle bli jättestor, verkar vara pga Bootstrap5 som gör att inte går att göra som Angela */
.boot5 {
  position: relative;
}

/* Features */
#features {
  position: relative;
}

.features-icons {
  color: #ef8172;
  margin-bottom: 1rem;
}

.features-icons:hover {
  color: #ff4c68;
}

.features-text {
  padding: 3%;
}

/* Testimonials Section */
#testimonials {
  background-color: #ef8172;
  position: relative;
}

.testimonial-image {
  width: 10%;
  border-radius: 100%;
  margin: 20px;
}

.carousel-item {
  padding: 7% 15%;
}

/* Press Section */
#press {
  background-color: #ef8172;
  padding-bottom: 3%;
}

.press-logo {
  width: 15%;
  margin: 20px 20px 50px;
}

/* Pricing Section */
#pricing {
  /* Angela gillar att ha static padding på just pricing, så därför sätts den i px  */
  padding: 100px;
}

.pricing-column {
  padding: 3% 2%;
}

/* Call to Action */
#cta {
  font-size: 3rem;
  padding: 7% 15%;
}

.cta-text {
  font-weight: 900;
  font-size: 3.5rem;
}

.cta-button {
  margin: 3% auto;
}

/* Footer Section */
#footer {
  margin: 7% 15%;
}

.footer-icons {
  padding: 1%;
}

/* Media Queries */

@media screen and (max-width: 1300px) {
  .title-image {
    width: 70%;
  }
 
}

@media screen and (max-width: 1270px) {
  .title-image {
    position: unset;
    transform: rotate(0);
    width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .boot5 {
    position: static;
  }

  #title .container-fluid{
    text-align: center;
  }
}  

@media screen and (max-width: 1100px) {
  .title-image {
    width: 70%;
  }
}