* { 
    box-sizing: border-box;
}

body { 
    font-family: "Open sans";
    font-size: 16px;
    display: flex; 
    flex-direction: column;
    text-align: center;
    min-width: 380px; 
    max-width: 1500px; 
    margin: auto; 
    padding: 0 30px; 
}

h1, h2 { 
    font-family: "Roboto Mono";
}

.button { 
    border: 3px solid #ff583b;
    background-color: #bf13d6;
    color: #FFFFFF; 
    border-radius: 15px;
    padding: 5%; 
    text-decoration: none;
}

a:hover {
    background-color: #e730ff;
    opacity: 90%;
}


/* header */
nav {  
    background-color: #bf13d6;
    height: 10%; 
}

nav ul { 
    float: right; 
    display: flex; 
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
}

nav li { 
    color: #FFFFFF; 
    font-family: "Roboto Mono";
    font-size: 1.5em;
    padding-right: 2em;

}

@media only screen and (max-width: 600px) { 
    nav li {
        font-size: 1em; 
    }
}


/* banner */

.banner { 
    display: flex; 
    justify-content: space-evenly; 
}

.btitle { 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    width: 50%;
    margin-bottom: 5%;
}

@media only screen and (max-width: 1000px) { 
    .btitle { 
        font-size: 1.7em; 
    }

    

    .bimg img{ 
        width: 250px; 
        height: auto; 
        margin-top: 50px; 
    }
}

@media only screen and (max-width: 700px) {
    .btitle {
        font-size: 1.3em; 
    }
}

@media only screen and (max-width: 500px) {
    .btitle {
        font-size: 1.2em; 
    }

    .bimg img {
        width: 150px; 
        height: auto; 
    }
}

/* mission */

.mission { 
    display: flex; 
    justify-content: center;
    align-items: center;
    border-top: 3px solid #bf13d6; 
    border-bottom: 3px solid #bf13d6;
}



/*featured */

.featured { 
    display: flex; 
    justify-content: space-evenly;
    flex-wrap: wrap; 

}

.wkcolumn { 
    width: 250px; 
    height: 400px; 
    border: 3px solid #bf13d6; 
    border-radius: 5px;
    margin: 2%; 
    display: flex; 
    flex-direction: column;
    justify-content: space-evenly;


}

.wkcolumn img { 
    width: 100%; 
    overflow: hidden;
}

.wkcolumn p { 
    margin-left: 10px; 
    margin-right: 10px; 
}

a.button.wk {  
    margin-bottom: 20px;
    margin-left: 10px; 
    margin-right: 10px; 
}

a.button.wk:hover {
    font-weight: 600;
    font-size: 1.1em; 
    color: pink; 
}







@media only screen and (max-width: 600px) { 
    .wk3, .wk4 { 
        display: none; 
    }
}



/* about */

.about { 
    display: flex; 
    flex-direction: row;
    justify-content: space-around; 
    border-top: 3px solid #bf13d6;
    border-bottom: 3px solid #bf13d6;
    margin-bottom: 50px;
    
} 

.aboutimg {
    width: 30%; 
}

.abouttext {
    width: 70%; 
    margin: auto; 
}

.aboutimg img { 
    width: 90%;
    border-radius: 150px;
    padding: 20px; 
}

.abouttext p { 
    width: 90%; 
    max-width: 700px;
    margin: auto;
    margin-bottom: 15px; 
}

@media only screen and (max-width: 800px) {

    .about {
    flex-direction: column; 
    }

    .aboutimg {
        margin: auto; 
        width: 300px; 
    }

    .aboutimg img {
        width: 250px; 
    }

    .abouttext {
        margin: auto; 
    }
}


/* footer */

footer { 
    background-color: #bf13d6;
}

address { 
    font-weight: 600;
    color: #FFFFFF; 
    font-size: 1.2em; 
    margin-top: 20px;
}

