@media (max-width: 500px;) {
  #projects {
    height: 250px;
  }
}

/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Style the active link (or home/logo) */
.active {
  background-color: black;
  color: white;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Space Mono;
  background-color: black;
  color: white;
  overflow-x: hidden;
}

#welcome-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 665px;
  color: white;
  font-weight: bold;
  background-image: url(https://cdn.pixabay.com/photo/2016/05/31/15/56/milky-way-1427210__340.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

#welcome-section h1 {
  font-size: 35px;
}

#welcome-section p {
  font-size: 25px;
}

#projects {
  height: 800px;
  width: 100%;
}

.project-title {
  text-align: center;
  font-size: 25px;
  padding: 20px;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
}

.column {
  width: 100%;
  padding: 10px;
}

#navbar {
  position: fixed;
  width: 100%;
}

#all {
  display: flex;
  flex-direction: column;
}

#about-title {
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 25px;
  padding: 20px;
  border-right: 1px solid white;
}

#about {
  height: 200px;
  width: 100%;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

#about-main {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#about-paragraph {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

#contact {
  width: 100%;
  height: 100px;
  text-align: center;
  border: 1px solid white;
}

#contact-title {
  padding: 10px;
  font-size: 25px;
}

i {
  color: white;
  display: flex;
  justify-content: space-evenly;
}

i:hover {
  color: purple;
}
