@import url('./reset.css');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700;900&display=swap');

* {
    font-family: 'Raleway', sans-serif;
    box-sizing: border-box;
  }

body {
    background-color: black;
}

section {
    margin: 100px auto;
}

h2 {
    color:#33A8DB;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 6.08px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

p {
    color: white;
}


.banner {
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(49, 168, 221, .2), rgba(0, 0, 0, .6)), url('../images/banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 1px solid #33A8DB80;   
    padding-top: 50px;
}

.banner-content {
    width: 600px;
    color: white;
    text-align: center;
    margin: auto;
}

.logo {
    width: 260px;
    height: 260px;
    margin: auto;
    border-radius: 50%;
    background-color: rgba(0,0,0, .4);
    padding: 20px;
    margin-bottom: 16px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.banner-content h1 {
    font-size: 2.7rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    background: -webkit-linear-gradient(#33A8DB, #1472B7);
    -webkit-background-clip: text;   
    background-clip: text;
}

.banner-content p {
    font-size: 1.3rem;
    margin: 16px 0 24px;
}


.banner-content button {
    color: #31A8DD;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: transparent;
    border-image: linear-gradient(#3BA1CD, #1572B7);
    border-radius: 30px;
    border-image-slice: 1;
    padding: 16px 32px;
    letter-spacing: 5px;
    cursor: pointer;
}

#course-content {
    width: 800px;
    text-align: center;
}

#course-content p {
    margin-bottom: 24px;
}

.module-list {
    margin: 24px 0;
}

.module {
    color: white;
    width: 530px;
    border: 1px solid #33A8DB;
    background-color: #252525;
    border-radius: 10px;
    box-shadow: inset -5px 6px 8px rgba(0, 0, 0, .6);
    margin: 0 auto 24px;
    padding: 15px;
}

.module span {
    color: #33A8DB;
}

#transform-world {
    height: 560px;
    background-image: url(../images/woman-code.png);
    background-size: cover;
    background-attachment: fixed;
    border-top: 1px solid #33A8DB;
    border-bottom: 1px solid #33A8DB;
    padding: 200px;
}

#transform-world p{
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: lowercase;
    max-width: 245px;
    text-shadow: 3px 2px #33A8DB;
}

#professional-challenges {
    text-align: center;
    width: 800px;
}

#professional-challenges img{
    margin: 32px 0;
}

footer {
    background-image: linear-gradient(rgba(50, 168, 219, .0), rgba(50, 168, 219, .2));
    text-align: center;
    border-top: 1px solid #33A8DB;

}

.dio-logo{
    width: 300px;
}

footer a {
    color: #33A8DB;
    font-weight: bold;
    text-decoration: none;
}



