@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


body {
    margin: 0px;
    background-color: #000000;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.banner {
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6) 25% 75%, rgba(0, 0, 0, 0.4)),
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(51, 168, 219, 0.3) 25% 75%, rgba(0, 0, 0, 0.6)), 
        url('../images/banner-bg.jpg') no-repeat bottom center / cover fixed; 
    padding: 40px 10px;
    border-bottom: 1px solid #33A8DB;
}

.banner-content {
    width: 780px;
    margin: auto;
    font-size: 1.24rem;
}

.profile {
    display: flex;
    margin: 10px auto;
    justify-content: center;
}

.profile img {
    border-radius: 50%;
    width: 350px;
    height: 350px;
    margin: auto;
    box-shadow: 0px 0px 0px 5px #5d2b97;
}

h1 {
    background-image: linear-gradient(#33A8DB, #1472B7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 20px 0px;
}

button {
    width: 326px;
    margin: 20px 10px;
    border-image: linear-gradient(#33A8DB, #1472B7) 1;
    border-width: 2px;
    border-style: solid;
    padding: 19px;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #33A8DB;
    background-color: transparent;
}

button:hover {
    color: white;
    background-color: rgba(51, 168, 219, 0.15);
    cursor: pointer;
}

@media screen and (max-width: 820px) {
    .banner{
        background-size: cover;
    }
    .banner-content {
        width: 90vw;
    }

    .profile img {
    max-width: 80vw;
    max-height: 80vw;
    box-shadow: 0px 0px 0px 3px #5d2b97;
    }

    button {
        width: 80vw;
    }
}

#course-content {
    padding: 40px 10px;
    border-bottom: 1px solid #33A8DB;
}

#course-content p {
    width: 650px;
    margin: 40px auto;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #5d2b97;
    margin: 20px 0px 20px 0px;
}

.modules-list {
    margin: 24px auto;
    width: 800px;
}

.module {
    margin: auto;
    margin-bottom: 30px;
    padding: 16px;
    max-width: 100%;
    background-color: #252525;
    border: 1px solid #33A8DB;
    border-radius: 50px;
    box-shadow: inset -2px 6px 4px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 820px) {
    .modules-list, #course-content p{
        width: 90vw;
    }

}

#cta {
    height: 550px;
    background: url('../images/cta-pic01-min.jpg') no-repeat center / cover;
    background-attachment: fixed;
    border-bottom: 1px solid #33A8DB;
}

#cta p {
    margin-top: 0px;
    position: relative;
    top: 175px;
    left: 150px;
    text-align: left;
    font-size: 2.5rem;
    font-weight: 900;
    width: 550px;
    text-shadow: 4px 3px #5d2b97;
}

@media screen and (max-width: 820px) {
    #cta p {
        width: 80vw;
        left: auto;
        margin: auto;
        text-align: center;
        font-size: 2rem;
    }
}

#coach {
    display: flex;
    flex-direction: column;
    width: 792px;
    margin: auto;
    padding: 40px 10px;
}

#img-coach {
    width: 792px;
    height: 600px;
    margin: 20px 0px;
}

#img-coach img {
    height: 100%;
    border-radius: 100px 20px 100px 20px;
    box-shadow: 4px 3px #fff;
}

#coach button {
    margin: 20px auto;
}

@media screen and (max-width: 820px) {
    #coach {
        width: 80vw;
    }

    #img-coach {
        max-width: 80vw;
        max-height: 40vh;
    }
}

footer {
    padding: 40px 10px 30px 10px;
    border-top: 1px solid #33A8DB;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(51, 168, 219, 0.15));
}