/* css */
body {
    margin: 0;
    background-color:aquamarine;
}
#navbar{
    background-color: aqua;
    height: 120px;
    overflow: hidden;
    margin: 0; 
    padding: 0;
}
.navbar a:hover {
    background-color: aqua;
    color: white;
  }
.links{
    float: left;
    display:block;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    text-align: center;
    top: 50%; left: 50%;
    transform: translate(150%, 50%);
    padding: 14px 16px;
    text-decoration: none;
    font-size: 24px;
}
#Logo-image{
    position:absolute;
    margin: 10px 25px 25px 20px;
}
#content-wrap {
    padding-bottom: 120px; 
}
#contact-me{
    background-color: rgb(65, 65, 246);
    color:aliceblue;
    text-align: center;
    padding: 3px;
    position: fixed;
    width: 100%;
    right: 0;bottom:0;left:0;
}


