* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

body {
  background-color: #151211;
  color: #999999;
  text-align: center;
}

#main {
  display: flex;
  flex-direction: column;
}

#navbar {
    position: fixed;
    top: 0;
    height: 50px;
    background-color: darkslategray;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

#welcome-section {
    padding-top: 4vh;
    height: 50vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#projects-section {
  text-align: center;
}

.card-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}

.card-row {
  display: flex;
  flex-direction: row;
  margin-top: 100px;
  width: 90vw;
  justify-content: space-evenly;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: brown;
  width: 500px;
  height: 250px;
  justify-content: space-evenly;
  border-radius: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.card img {
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

#contact-info {
  text-align: center;
  display: flex;
  background-color: darkslategray;
  align-items: center;
  justify-content: space-evenly;
  padding-bottom: 20px;
  padding-top: 20px;
  margin-bottom: 10px;
  margin-top: 20px;
}

h1 {

}

h2 {

}

#navbar-links {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  justify-content: space-evenly;
  width: 50%;
}

#navbar-name {
  position: fixed;
  top: -5px;
  left: 0;
  z-index: 10;
  color: white;
  padding-top: 15px;
  padding-left: 15px;
  font-size: 20px;
}

a {
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease;
}

a:hover {
  cursor: pointer;
  transform: scale(1.2);
}

footer {
  text-align: center;
  color: white;
  margin-bottom: 20px;
  margin-top: 20px;
}
