/*CONFIGURAÇÕES PADRÃO*/
* {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: Raleway;
    src: url('assets/fonts/Raleway.ttf');
}

body {
    font-family: Raleway, sans-serif;
    text-align: center;
}

/*HEADER*/

header {
    height: 100vh;    
    background-image: url('images/banner.png'), linear-gradient(#000, #0a6891, #000);
    background-blend-mode: multiply;
}

/*BANNER CONTENT*/

.banner-content {
    border-bottom: 1px solid #31A8DD;
    display: flex;
    height: 85vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;

}

h1 {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.gradient-text {
    background-image: linear-gradient(#33A8DB, #1472B7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.banner-content p {
    color: white;
    font-size: 1rem;
}

.logo {
    background-color: #0000001a;
    padding: 20px;
    border-radius: 100%;
    margin-bottom: 30px;
}

.logo img {
    max-width: 100%;
}

.button-header {
    margin: 20px;
    padding: 20px;
    text-transform: uppercase;
    font-weight: 800;
    border: 2px solid #33A8DB;
    letter-spacing: 2px;
    width: 300px;
    background-color: transparent;
}

/*COURSE CONTENT*/
#course-content {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: black;
    padding: 20px;
    border-bottom: 1px solid #31A8DD;
}

h2{
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #33A8DB;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.modules-list {
    margin-top: 20px;
}

.module {
    background-color: #252525;
    border: 1px solid #33A8DB;
    box-shadow: inset 0px 2px 10px 2px #000;
    border-radius: 50px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.module span {
    color: #33A8DB;
}

/*TRANSFORM WORLD*/ 
#transform-world {
    height: 60vh;
    background-image: url('images/woman-code.png'), linear-gradient(#000, #02425e, #000); 
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat; 
    background-size:cover;
    display: flex;
    align-items: center;
}

#transform-world p {
    color: #fff;
    font-weight: 800;
    text-transform: lowercase;
    font-size: 2rem;
    margin-left: 50px;
    text-shadow: 3px 2px #33A8DB;
}

/*PROFISSIONAL CHALLENGES*/
#professional-challenges{
    border-bottom: 1px solid #31A8DD;
    border-top: 1px solid #31A8DD;
    display: flex;
    flex-direction: column;
    color: #fff;
    background-color: #000;
    justify-content: center;
    align-items: center;
    padding: 50px;
    font-size: 0.9rem;
    text-align: center;
}

#professional-challenges img {
    max-width: 100%;
    margin-bottom: 30px;
}

/*FOOTER*/
footer {
    background-color: #000;
    background-image: linear-gradient(#000,#33a9db49);
    height: 25vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

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

.dio-logo {
    max-width: 100%;
}

/*MEDIA QUERIES*/
@media (min-width: 768px) { 
    p {
        max-width: 800px;
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
        max-width: 800px;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
    font-size: 1.3rem;
    }

    .module {
        font-size: 1rem;
    }

    #transform-world p {
        margin-left: 200px;
        text-align: left;
        font-size: 3rem;
    }

    .modules-list {
        min-width: 550px;
    }


}
