*,
*::after,
*::before {
  padding: 0;
  margin: 0;
}

html {
  background-color: burlywood;
  scroll-behavior: smooth;
}

h1 {
  font-family: 'Titan One', 'Times New Roman', Times, serif;
  font-size: 48px;
  font-weight: 700;
}

a {
  color: black;
}

p {
  color: whitesmoke;
}

.title {
  color: white;
  text-shadow: 2px 2px black;
  text-align: center;
  padding: 48px;
  padding-top: 96px;
  border-top: 1px black solid;
}

.container {
    display: flex;
    flex-direction: column;
}

/*    Navbar    */
.navbar {
  display: flex;
  align-items: center;
  width: 100%;
  position: fixed;
  background-color:rgb(230, 250, 250);
}

.header-logo {
  height: 90px;
  margin-left: 24px;
  border: 2px solid burlywood;
  border-radius: 50%;
  box-shadow: 1px 1px;
  transition: all 2.0s;
}

.header-logo:hover {
  border: 4px solid orange;
  transform: rotate(360deg);
  transition: all 2.0s;
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

.nav-links {
  display: flex;
  align-items: center;
  text-align: center;
  list-style: none;
  margin-left: auto;
  margin-right: 12px;
  
}

.nav-links a {
  text-decoration: none;
  display: block;
  font-size: 20px;
  padding: 16px;
}

.nav-links a:hover {
  background-color: lightblue;
  cursor: pointer;
  color: white;
  text-shadow: 2px 2px 1px black;
}



/*    Title secion    */
.title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid black 1px;
  background-image: linear-gradient(
      60deg,
      rgba(57, 60, 90, 0.85),
      rgba(180, 180, 120, 0.5)
    ),
    url(https://wallpaperforu.com/wp-content/uploads/2020/06/paste-wallpaper-2006171415338-scaled.jpg);
  background-position: center;
  background-size: cover;
}

.media-box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 128px 72px 72px;
  gap: 24px;
  padding: 32px;
  border: 3px solid skyblue;
  border-radius: 200px;
  box-shadow: 2px 2px 20px 2px;
  background: rgba(57, 60, 90, 0.7);
}

.textbox {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: flex-start;
  gap: 20px;
  padding-left: 32px;
}

.textbox h1 {
  color: burlywood;
  text-shadow: 2px 2px black;
}

.main-img {
  object-fit: cover;
  flex: 1 1 auto;
  max-width: 300px;
  border: 15px solid burlywood;
  border-radius: 50%;
  box-shadow: 2px 2px 3px;
}

.title-button {
  font-weight: 900;
  padding: 4px 24px;
  border-radius: 4px;
  background-color: rgb(230, 250, 250);
  align-self: center;
}

.-button:hover {
  cursor: pointer;
  background-color: lightblue;
  box-shadow: 1px 1px burlywood;
}


/*  Team information section  */
.worker-container {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;

  padding: 0px 24px 96px 24px;
}

.worker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  gap: 8px;
  padding: 24px;  
  color: white;
  text-shadow: 2px 2px 1px black;
}

.worker-icon {
  width: 200px;
  height: 200px;
  border: 12px solid rgb(230, 250, 250);
  border-radius: 32px;
  box-shadow: 2px 2px 3px black;
  object-fit: cover;
}

.worker-text {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  flex-wrap: wrap;
  max-width: 200px;
  font-size: 18px;
  font-weight: bold;
}


/*    Testimonial section     */
.quote-section {
  display: flex;
  flex-direction: column;
  padding: 128px 128px 96px;
  background-color: lightblue;
  border-bottom: solid black 1px;
  font-size: 24px;
  line-height: 150%;
  font-style: italic;
}

.quote-section p {
  text-align: end;
  font-style: normal;
  font-weight: 600;
  color: sienna;
}


/* Project portfolio section */
.portfolio-section {
  justify-content: center;
  border-bottom: solid black 1px;
  background-image: linear-gradient(
      60deg,
      rgba(57, 60, 90, 0.85),
      rgba(180, 180, 120, 0.5)
    ),
    url(/images/city-background.avif);
  background-position: center;
  background-size: cover;
}

.portfolio-container {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  padding: 0px 24px 96px 24px;
}

.portfolio-tile {
  color: white;
  text-shadow: 2px 2px black;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px;
  width: 300px;
}

.portfolio-icon {
  width: 200px;
  height: 200px;
  border: 12px solid lightblue;
  border-radius: 32px;
  box-shadow: 2px 2px 3px black;
  object-fit: cover;
}

.portfolio-icon:hover {
  border: 12px solid skyblue;
  border-radius: 32px;
  box-shadow: 2px 2px 10px navy;
  
}

.portfolio-text {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  flex-wrap: wrap;
  max-width: 200px;
  font-size: 18px;
  font-weight: bold;
}


/* Contact info section */
.contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  background-image: linear-gradient(
      60deg,
      rgba(57, 60, 90, 0.85),
      rgba(180, 180, 120, 0.5)
    ),
    url(images/building-background.webp);
  background-position: center;
  background-size: cover;

  font-weight: bold;
  text-shadow: black 1px 1px;
}

.contact-info-container {
  margin-bottom: 36px;
}

.contact-info-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 20px;
}

.contact-icon {
  height: 30px;
  width: 30px;
}

.contact-section a {
  color: white;
  text-decoration: none;
  font-weight: bolder;
  text-shadow: black 2px 2px;
}

.contact-section a:hover {
  color: lightskyblue;
  text-decoration: none;
  font-weight: bolder;
  text-shadow: black 2px 2px;
}


/*    Email list signup    */
.signup-section {
  display: flex;
  justify-content: center;
  border-bottom: solid black 1px;
  border-top: solid black 2px;
}

.signup-box {
  display: flex;
  align-items: center;
  background-color: sienna;
  border: 12px solid lightblue;
  border-radius: 24px;
  box-shadow: 2px 2px 3px black;
  margin: 128px 48px;
  padding: 32px 48px;
  max-width: 1100px;
}

.email-text h2 {
  color: lightblue;
  text-shadow: 1px 1px black;
  font-family: 'Titan One', Arial, Helvetica, sans-serif;
  padding-bottom: 8px;
}

.email-text p {
  padding-right: 24px;
}

.email-btn {
  flex-shrink: 0;
  height: 36px;
  width: 128px;
  padding: 4px 24px;
  margin: 24px auto;
  background-color:rgb(230, 250, 250);
  border-radius: 4px;
  border: 3px solid lightblue;
  box-shadow: 2px 2px 3px black;
  font-weight: 400;
}

.email-btn:hover {
  font-weight: 800;
  background-color: skyblue;
  border-color: steelblue;
  cursor: pointer;
}

/*    Footer    */
footer p {
  padding: 24px;
  text-align: center;
  color: black;
  background-color: rgb(230, 250, 250);
}