body, header, nav, footer, main, h1, div, img, ul{
    margin: 0;
    padding: 0;
    border: 0;
}

body{
    background-image: linear-gradient(to right, aqua, darkorchid);
}

head, nav, footer {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

header {
    float: left;
    width: 25%;
}

main{
    clear: left;
    background-color:rgb(255, 255, 255);
    padding: 2%;
    font-size: 1.25em;
}

h1{
    text-align: right;
}

ul{
    list-style: square;
}

ol{
    list-style: upper-roman;
}

img{
    max-width: 100%;
    display: block;
}

#contact{
    text-align: center;
}

.logo {
    width: 100px;
}

.hero-image {
    width: 100%;
}

footer p a{
    color: #000000;
    text-decoration: none;
}

footer p {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 8px;
}

.container{
    display: flex;
}

.row-container{
    display: flex;
    flex-direction: row;
}

.text-column{
    display: flex;
    flex-direction: column;
}

.image-column{
    display: flex;
    flex-direction: column;
}

nav ul{
    list-style-type: none;
    margin: 0;
    text-align: left;
}

nav li{
    font-size: 1.5em;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
}

nav li a{
    display: block;
    color: rgb(255, 148, 227);
    text-align: left;
    padding: 0.5em 1em;
    text-decoration: none;
}

nav{
    float: left;
    margin: 5em 3em 0 0;
    width: 70%;
}

 .link {
    color:#ff00b7;
    width: 100%;
    height: 100%;
    border-bottom: 2px solid rgb(255, 0, 179);
    text-align: center;
    padding: 12px 0;
    background-color:#009dff;
    cursor: pointer;
}

.link:hover {
    background-color:rgb(255, 230, 0);
}

.side-bar{
    width: 200px;
    padding: 55px 0px;
    position: fixed;
}