/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: whitesmoke;
}

main {
    float:left ;
    width:60% ;
    background-color:white ;
    padding:1em ;
}

img {
   width:300px ;


}

aside {
    float:Left ;
    width:35% ;
    background-color:lightgrey ;
    padding:1em ;
    margin-right:5% ;
}

/* Clear floats after content */
body::after {
    content: "";
    display: table;
    clear: both;
}

aside a {
    color: #007bff;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

aside a:hover {
    color: #0056b3;
    background-color: #e9ecef;
    padding-left: 10px;
}