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

body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, sans-serif;
    color: white;
    line-height: 1.6;
    padding-left: 0px; /* Make room for fixed sidebar */
}

main {
   position: left;
   width: 67%;
   background-color: #255a86;
   padding: 10px;
   margin: 0;

}

img {
    position: fixed;
    width: 30%;
    left: 70%;
    top: 60%;
    height: 40%;
}

/* Fixed Position Sidebar */
aside {
    position: fixed;
    top: 0;
    left: 70%;
    width: 30%;
    height: 55%;
    background-color: #8bb4ee;
    color: none;
    padding: 20px;
}

aside a {
    color: #3498db;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    border-radius: 4px;
}

aside a:hover {
    color: #ecf0f1;
    background-color: #34495e;
    padding-left: 40px;
}