#all {
    width: 1000px;
    border: 1px solid black;
    /* this section creates a border around elements in the page and sets the page maximum width at 1000 pixels*/
}
img {
    float: right;
    padding-left: 10px;
    padding-bottom: 10px;
}
p:{
    float: left;
}
a:link {
    color: darkblue;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}
a:active {
    color: darkblue;
    font-weight: bold;
    font-size: 18px;
    text-decoration: underline;
}
a:visited {
    color: purple;
}
a:hover {
    color: red;
    text-decoration: underline;
}
a:focus {
    color: red;
    text-decoration: underline;
}
