body {
    background: rgb(58, 58, 58);
    color: white;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Rules */

header {
    background-color: black;
    background-image: url("images/HomePage.png");
    background-size: 60%;
    background-position: center;
    height: 200px;
    padding: 20px;
    text-align: center;   

}

header a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    margin: 40px;
}

header .mobile {
    display: none;
}
/*  
header .logo a {
    background-image: url("Images/Homelogo.png");
    background-size: 50px;
    background-repeat: no-repeat;
    display: inline-block;
    height: 80px;
    position: relative;
    text-indent: -9999999px;
    top: -10px;
    width: 50px;
}
*/
nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

nav li {
    display: inline-block;
    margin: 20px;
}

.title {
    background: rgb(93,12,237);
    color: white;
    padding: 1px;
    text-transform: capitalize;
    text-align: center;

}

/* responsive rules */

@media screen and (max-width: 1040px) { 
    
    header {
        height: 200px;
    }
   
    header .mobile {
        display:inline-block;
    }

    header .desktop {
        display: none;
    }
}



/* Features Rules */

.features {
    background: white;
    color: gray;
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.features figure {
    margin: auto;
    text-align: center;
    text-transform: uppercase;
    width: 200px;
}
.features .text {

    text-transform: none;
}

.features figure img {
    border: 1px solid white;
    border-radius: 50%;
    box-shadow: gray 0px 0px 15px;
    width: 200px;
    height: 150px;

}

/* responsive rules */


/* Footer Rules */

footer {
    background: black;
    font-size: 15px;
    color: gray;
    padding: 5px 20px;
    text-align: center;
}
