nav {
    position: sticky;
    top: 0;
    background-color: #333;
    z-index: 1;
}
nav ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
nav li {
    float: left;
}
nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
nav li a:hover {
    background-color: #111;
}
nav li a.home {
    background-color: #4CAF50;
}
#profileImage {
    border-radius: 50%;
    width: 50px;
    margin: 7px;
}
.section {
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
}

#home {
    background-image: url('../images/thmbs.png');
}
#section1 {
    background-image: url('../images/trippy.png');
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150vh;

}

#section2 {
    background-image: url('../images/graffiti.png');
}
#section3 {
    background-image: url('../images/graf.png');
}
body {
    font-family: Arial, Helvetica, sans-serif;
  }
.icon a {
    position: absolute;
    right: 0;
    top: 0;
}
.icon a img {
    width: 50px;
    height: 50px;
}
#myLinks {
    display: none;
    background-color: #333;
    color: white;
    width: 100%;
    text-align: right;
}

a:link {
    color: white;
}

