body
{
    background-color:beige;
    text-align: center;
    margin: 0;
    padding: 0;
}
header
{
    
    background-color:hsl(187,90%,26%);
    padding: 10px;
}
header .logo
{

  background-image: url("images/mind-eraser-transparent.png");
  background-size: 200px;
  background-repeat: no-repeat;
  display: inline-block;
  width: 200px;
  height: 220px;  
  text-indent: -99999px;
  position: relative;
}

header .mobile
{
    display: none;
}
/*RESPONSIVE RULES*/
@media screen and (max-width: 608px)
{
    header .mobile
    {
        display: inline-block;
    }
    header .desktop
    {
        display: none;
    }

}
.features
{
    background-color: beige;
    font-family: 'Times New Roman', Times, serif;
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    
}
.features figure
{
    margin: auto;
    text-align: center;
    color: #11d4df;
    text-shadow: 0px 0px 1px #138f72;
    text-transform: uppercase;
    width: 200px;
}
.features figure img
{
    border: 2px solid hsl(187,90%,26%);
    border-radius: 50%;
    box-shadow: black 0px 0px 10px;
    width: 200px;
}
.accent
{
    background-color: saddlebrown;
    display: flex;
}
.accent figure
{
    margin:auto
}
.accent figure img
{
    width: 70%;
}

div
{
    background-color: burlywood;
    width: 100px;
    margin: auto;
}
footer
{
    background-color:hsl(187,90%,26%);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding: 10px 20px;
}
ul
{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
li
{
    display: inline-block;
    padding: 0;
    margin: 10px;
    font-size: 20px;
}

a:link {
    color: green;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: pink;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}




