@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');   
body {
  font-family: 'Roboto', sans-serif;
} 
* {
  margin: 0;
  padding: 0;
}
      .first-section {
        background: linear-gradient(rgba(31, 41, 55, 0.85), rgba(31, 41, 55, 0.85)), url('https://i.pinimg.com/564x/d4/0d/5d/d40d5d3762bccc027e63eb186dfe7ab3.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        margin: 0;
        padding: 20px;
        position: relative;
        min-height: 100vh;
      }
      .first-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(31, 41, 55, 0.3);
        z-index: 1;
      }
      .first-section > * {
        position: relative;
        z-index: 2;
      }
#header-logo {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-size: 45px;
  font-weight: bold;
}
a {
  color: #E5E7EB;
  text-decoration: none;
  font-size: 18px;
}
.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center; 
}
ul {
  display: flex;
  gap: 20px;
}

/* PArt 2 */
h1 {
  font-size: 48px;
  color: #F9FAF8  ;
  font-weight: 900;
}

#hero-secondary {
  font-size: 18px;
  color: #E5E7EB;
  font-weight: 400;
}
.content {
  display: flex;
  flex-direction: row;
  margin: 50px  ;
}

.content-left,
.content-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
}
.content-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-left: 150px;
}


.image {
  margin: 50px  ;
}
.sign-up-button {
  background-color: #3882F6;
  color: #FFFFFF;
  font-size: large;
  border: none;
  padding: 12px 24px;
  width: 150px;
  border-radius: 10px;
  cursor: pointer;
}
/* Part 3 */
h2 {
  font-size: 36px;
  font-weight: bolder;
  color: #1F2937;
  text-align: center;
  margin-top: 50px;
}
.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 100%;
  gap: 20px;
  margin: 50px auto;
  align-items: center;
}
.one  {
  width: 150px;      /* sets the width */
  height: 150px;     /* sets the height */
  border: 2px solid blue;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;  /* content aligned bottom */
  padding-bottom: 1em;
  background: #fff;
  gap: 2px;
  margin-top: 2em;
  margin-bottom: 2em;
}
.box-of-blue {
  justify-content: space-around;
}
.container {
  font-size: 18px;
  text-align: center;
}
/* Part 4 */
.third-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #efe7eb;
  padding: 25px 0;
  text-align: center;
  height: 300px;
}
.third-section-div {
  font-size: 36px;
  font: italic;
  font-weight: light;
  color: #1F2937;
}
.third-section-text {
  font-size: 20px;
  color: black;
}
/* PArt 5 */
.last-section {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.blue-container {
  background-color: #3882F6;
  height: 45%;
  width: 75%;
  display: flex;

}
.left {
  width: 80%;
  margin-left: 100px;
  margin-top: 30px;
}
h4{
  font-size: 30px;
  color: #efe7eb;
  
}
.last-p {
  font-size: 18px;
  color: aliceblue;
  
}
.right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-last {
  background-color: black;
  color: #FFFFFF;
  font-size: large;
  border: none;
  padding: 12px 24px;
  width: 150px;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 100px;

}
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1F2937;
  color: white;
  text-align: center;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}