
@font-face {
  font-family: raleway;
  src: url(assets/fonts/Raleway/Raleway-Regular.ttf);
}
 
body {
  background-color: black;
  margin: 0;
  font-family: raleway, sans-serif;
  color: white;
}

 header{
  text-align: center;
 }

 .logo {
    width: 100%;
    height: 100%;
    margin: auto;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    background-size: hidden;
  }

  #logo {
    object-fit: contain;

  }

.banner {
    background-image: url(assets/images/banner.png);
    width: 100%;
    height: 450px;
    contain: content;
    padding-bottom: 100px;
    border-bottom: solid 1px #33A8DB;
    margin: 16px 0 24px;
    background-blend-mode: overlay;
    background-color: rgba(50, 168, 219, .05);
}

#course-content {
  width: 800px;
  text-align: center;
  margin: auto;
  width: 100%;
  height: 450px;

}

#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 span {
  color: #33A8DB;
}
  
#transform-world{
    width: 100%;
    height: 600px;
    background-image: url(assets/images/woman-code.png);
    background-size: cover;
    overflow: auto;
    background-attachment: fixed;
    border-top: solid 1px #33A8DB;
 }

 #transform-world p {
  font-weight: 900;
  font-size: 35px;
  text-transform: lowercase;
  max-width: 250px;
  text-shadow: 3px 3px 7px #33A8DB;
  font-family: raleway;
  padding: 180px;
}


#professional-challenges {
  width: 100%;
  height: 720px;
  margin: auto;
  border: solid 1px #33A8DB;
  border-left: none;
  border-right: none;
  background-color: transparent;
  background-image: linear-gradient(rgba(50, 168, 219, .2), rgba(50, 168, 219, .0));
  text-align: center;

}

footer {
  width: 100%;
  height: 150px;
  margin: auto;
  padding: 60px 0;
  text-align: center;
  color: white;
  font-weight: bold;
  background-image: linear-gradient(rgba(50, 168, 219, .0), rgba(50, 168, 219, .2));

}

.dio-logo {
  width: 300px;
}

a {
  text-decoration: none;
}

h1 {
  text-transform: uppercase;
  font-family: raleway;
  text-align: cemter;
  color: transparent;
  background: -webkit-linear-gradient(#33A8DB, #1472B7);
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 28px;
}
h2 {
  text-transform: uppercase;
  font-family: raleway;
  text-align: center;
  color: #33A8DB;
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
} 

p {
  text-align: center;
  font-family: raleway;
  color: white;
  overflow: auto;
  letter-spacing: 4px;
  padding-bottom: 6px;
  font-size: 14px;
}


button {
  padding: 16px 32px;
  background-color: transparent;
  color: #33A8DB;
  border-color: #33A8DB;
  font-size: 24px;
  font-weight: bold;
  border-image-slice: 10;
  border-radius: 8px;
  text-transform: uppercase;
  background-image: linear-gradient(rgba(50, 168, 219, .0), rgba(50, 168, 219, .2));
  transition: background-color 0.5s ease-in-out;
}

button:hover {
  background-color: #33A8DB;
  color: white;
}