@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');

*{
    font-family: 'Quicksand', sans-serif;
    box-sizing: border-box;

}

p{
    color: white;
}

body{
    background-color: black;
}

section{
    margin: 100px auto;
}

.banner p{
    margin-top: 20px;
    font-size: 18px;
}

.banner .banner-content{
    color: white;
    width: 600px;
    margin: auto;
    text-align: center;
}

.banner{
    height: 500px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(49, 168, 221, 0.1) 100%), url('/assets/images/banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
}

.banner .logo{
    background-color: rgba(0, 0, 0, .2);
    height: 260px;
    width: 260px;
    margin: auto;
    border-radius: 50%;
    padding: 16px;
    margin-bottom: 16px;
}

.banner .logo img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    margin: auto;

}

.banner .banner-content button {
    color: #31A8DD;
    font-size: 1rem;
    font-weight: bold;
    padding: 16px 32px;
    text-transform: uppercase;
    letter-spacing: 4px;
    background-color: transparent;
    border-image: linear-gradient(#3BA1CD, #1572B7);
    border-image-slice: 10;
    border-radius: 30px;
    margin-top: 20px;
  }

.logo{
    background: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
}

.banner-content{
    text-align: center;
   
}

.banner h1 {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    color: transparent;
    background: -webkit-linear-gradient(#33A8DB, #1472B7);
    background-clip: text;
    -webkit-background-clip: text;
}

h2{
    color: #33A8DB;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 6.08px;
    text-align: center;
    margin-top: 20px;
}

#course-content{
    width: 800px;
    text-align: center;
}

#course-content p{
    padding: 16px;
}

#course-content .modules-list {
    margin: 24px 0;
  }

#course-content .modules-list .module {
    color: white;
    width: 530px;
    margin: 0 auto 24px;
    border: 1px solid #33A8DB;
    background-color: #252525;
    padding: 16px;
    border-radius: 100px;
    box-shadow: inset -5px 6px 8px rgba(0, 0, 0, .7);
  }

  #course-content .modules-list .module span {
    color: #33A8DB;
  }

  #transform-world {
    height: 560px;
    background-size: cover;
    background-image: url("/assets/images/woman-code.png");
    background-attachment: fixed;
    border-top: 1px solid #33A8DB80;
    border-bottom: 1px solid #33A8DB80;
    padding: 200px;
  }

  #transform-world p {
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: lowercase;
    max-width: 250px;
    text-shadow: 3px 2px #33A8DB;
  }

  #professional-challenges {
    text-align: center;
    width: 800px;
  }

  #professional-challenges img {
    margin: 32px 0;
  }

  footer {
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(rgba(50, 168, 219, .0), rgba(50, 168, 219, .2));
    border-top: 1px solid #33A8DB80;
  }

  footer .dio-logo {
    width: 300px;
  }

  footer a {
    color: #33A8DB;
    font-weight: bold;
    text-decoration: none;
  }