@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background:  grey; 
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(88, 80, 80); 
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button {
  background: lightblue;
  outline: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font: 16px/1.5 "Ubuntu", sans-serif;
}

/* CONTAINER */
.wrapper {
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  /* min-height: 100vh; */
}

.wrapper > * {
  padding: 20px;
}


/* HEADER */
.page-header {
  background: cornflowerblue;
}
.page-header nav {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.page-header ul {
  display: -webkit-box;
  display: flex;
  order: 1;
  width: 100%;
  margin-top: 15px;
}

.page-header ul li:not(:last-child) {
  padding-right: 15px;
}

.page-header .cta-contact {
  font-family: inherit;
  font-size: 1.2rem;
  padding: 5px 18px;
  border: 1px solid;
  border-radius: 100px;
}


/* MAIN */
.page-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  min-height: 350px;
  background: #000000
    url(https://chunkbytes.com/wp-content/uploads/2019/01/jefferson-santos-450403-unsplash-1-1024x683.jpg) no-repeat
    center / cover; 
  background-blend-mode: luminosity;
  color: white;
  min-height: 100vh;
}

.page-main div {
  max-width: 500px;
}

.page-main h1 {
  margin-bottom: 20px;
}

.page-main p + p {
  margin-top: 10px;
}

/* WORK */
h4 {
  font-weight: lighter !important;
  color: cornflowerblue;
  font-size: 36px !important;
}
h3 {
  font-size: 40px !important;
  
}
.page-main-work {
  min-height: 100vh;
}

.flexbox {
  display: flex;
  flex-direction: column;
  padding: 0px;
  justify-content: space-between;
}

.flexbox>div {
  text-align: center;
  padding: 50px;
  margin: 40px;
  border-top: solid; 
  border-color: cornflowerblue;
}

@media(min-width:576px) {
  .flexbox {
    flex-flow: row wrap;
  }
  .flexbox>.left {
    order: 1;
    flex: 0.5;
  }
  .flexbox>.right {
    order: 2;
    flex: 0.5;
  }
  .flexbox>.center {
    order: 3;
    width: 100%;
  }
}

@media(min-width:768px) {
  .flexbox {
    flex-flow: row nowrap;
  }
  .flexbox>div {
    width: 33.33% !important;
  }
  .flexbox>.left {
    order: 1;
  }
  .flexbox>.center {
    order: 2;
  }
  .flexbox>.right {
    order: 3;
  }
}

/* SERVICES */

.page-main-services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  min-height: 350px;
  background-image: linear-gradient(lightblue,cornflowerblue);
  color: black;
  min-height: 100vh;
}

.page-main-services div {
  max-width: 500px;
}

.page-main-services h1 {
  margin-bottom: 20px;
}

.page-main-services p + p {
  margin-top: 10px;
}


/* TEAM */

.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.container-team {
  overflow: hidden;
  box-shadow: 0px 2px 8px 0px #b0bec5;
  background-color: white;
  text-align: center;
  border-radius: 1rem;
  position: relative;
  width: 280px;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.banner-img {
  position: absolute;
  background-image: url(https://images.wallpapersden.com/image/wxl-small-memory_58461.jpg);
  height: 10rem;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.profile-img {
  width: 8rem;
  clip-path: circle(60px at center);
  margin-top: 4.5rem;
}

.name {
  font-weight: bold;
  font-size: 1.5rem;
}

.description {
  margin: 1rem 2rem;
  font-size: 0.9rem;
}

.btn {
  width: 100%;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  padding: 1rem;
  background-color: cornflowerblue;
}

/* FOOTER */
.page-footer {
  display: -webkit-box;
  display: flex;
  flex-direction: column-reverse;
  background: lightblue;
}

.page-footer ul {
  display: -webkit-box;
  display: flex;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.page-footer ul li:not(:last-child) {
  margin-right: 20px;
}


/* MEDIA QUERIES */
@media screen and (min-width: 550px) {
  .page-header ul {
    width: auto;
    margin-top: 0;
  }

  .page-header .cta-contact {
    order: 1;
  }

  .page-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-footer ul {
    margin-bottom: 0;
  }
  .page-main {
    padding-left: 90px;
  }

  .page-main-services {
    padding: 90px;
  }

  .page-main-work {
    padding: 90px;
  }

  .page-main-team {
    padding: 90px;
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }

  
}
