@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --font-header: 'Raleway';
    --dark-blue: #1472b7;
    --light-blue: #33a8db;
}
*{
    margin: 0;
    padding: 0;
    font-family: var(--font-header);
    box-sizing: border-box;
    color: white;
}
body{
    width: 100vw;
    height: 100vh;
    background-color: black;
}
.banner{
    height: 600px;   
    border-bottom: 1px solid var(--dark-blue);
    padding-top: 56px;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,.5) , rgba(14, 79, 125, 0.5), rgba(0,0,0,.5)), url(images/banner.png);
    object-fit: contain;
    

}
.banner-content{
    width: 600px;
    margin: auto;
    text-align: center;
}
.logo{
    height: 260px;
    width: 260px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    padding: 16px;
    margin-bottom: 16px;
}
.logo img{
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
h1{
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 46.96px;
    text-transform: uppercase;
    color: transparent;
    letter-spacing: 1.5;
    background: -webkit-linear-gradient(var(--light-blue), var(--dark-blue));
    background-clip: text;
    -webkit-background-clip: text;
}
.banner-content p{
    width: 600px;
    height: 46;
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: 23.48px;
    margin:16px 0 24px;
}   
button{
   color: var(--light-blue);
   margin: 15px 0 20px;
   font-size: 16px;
   font-weight: bold;
   padding: 16px 32px;
   text-transform: uppercase;
   letter-spacing: 4px;
   background-color: transparent;
   border-image: linear-gradient(var(--light-blue), var(--dark-blue)) 10 ;
}

section{
    margin: 100px auto;
    text-align: center;
}
#course-content{
    width: 800px ;
   
}
h2{
    font-size: 32px;
    color: var(--dark-blue);
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
#course-content p{
    color: white;
}
.modules-list{
    margin: 24px 0;
}
.module{
    color: white;
    width: 530px;
    margin: 0 auto 24px;
    border: 1px solid var(--dark-blue);
    background-color: #252525;
    padding: 16px;
    border-radius: 100px;
    box-shadow: inset -5px 6px 8px rgba(0, 0, 0, .7);
}
#transform-world{
    height: 560px;
    background-size: cover;
    background-image: url(images/woman-code.png);
    background-attachment: fixed;
    border-top: 1px solid #33a8d880;
    border-bottom: 1px solid #33a8d880;
    padding: 200px;
}
#transform-world p{
    font-weight: 900;
    font-size: 40px;
    text-transform: lowercase;
    max-width: 250px;
    text-shadow: 3px 2px var(--dark-blue);
    color: white;
}
#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 a{
    color: var(--dark-blue);
    font-weight: bold;
    text-decoration: none;
}
