* {
  margin: 0 auto;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #333;
  color: #efefef;
  width: 100%;
  height: 100%;
}

.flexwrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}

nav {
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 11;
  background-color: #efefef;
  width: 100%;
  word-wrap: none;
}

.nav-item {
  display: inline-block;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #efefef;
  color: #333;
  font-size: large;
}

#me {
  flex-grow: 3;
  margin-left: 15%;
}

#options {
  flex-grow: 1;
}

#name {
  display: inline-block;
}

.nav-link {
  text-decoration: none;
}

.nav-link:hover {
  border-bottom: #bf9268 solid 2px;
}

.fa-github-square {
  color: #333;
}

#landing {
  margin: 0 auto;
  text-align: center;
  height: 100vh;
  width: 100%;
  position: relative;
  background-image: url('../img/mnt_fuji.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

#intro {
  position: relative;
  z-index: 9;
  padding-top: 10vh;
  margin: 0 auto;
}

#iam,
#contact-now {
  margin-top: 5%;
}

.section {
  padding: 5% 10%;
}

#section-title {
  text-align: center;
  margin: 20px auto;
}

#showcase {
  margin: 5%;
  flex-direction: row;
}

ul {
  margin-top: 5vh;
}

li {
  text-align: left;
  list-style: none;
}

p {
  display: inline-block;
  margin: 20px;
  padding-bottom: 10px;
  line-height: 10px;
  font-size: x-large;
}

.project-card {
  width: 960px;
  height: auto;
  background-color: #efefef;
  color: #333;
  margin: 25px;
  margin-top: 50px;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s;
}

/* .project-card:hover {
  border-top: solid #bf9268 5px;
  border-bottom: solid #bf9268 5px;
  box-shadow: none;
} */

hr {
  border: solid #bf9268 1px;
}

.project-card:focus {
  border: none;
  text-decoration: none;
  box-shadow: rgba(13, 207, 143, 0.8) 0px 0px 2px 5px;
  border-radius: 2px;
  outline: none;
  overflow: hidden;
}


.project-card .title {
  width: 100%;
  height: 5%;
  margin-bottom: 1rem;
}

.project-card .snapshot {
  width: 950px;
  height: 600px;
  background: url("../img/web_player_snapshot.png") center center/contain no-repeat;
}

.project-card .links {
  width: 100%;
  height: 10%;
  padding: 1rem;
}

.project-card .links a {
  color: #333;
  text-decoration: none;
  font-size: large;
  padding: 1rem;
}

.scroller {
  color: #efefef;
  display: block;
  padding: 0 5px;
}

.link-container {
  width: fit-content;
  margin-top: 5%;
}

.fa-angle-down {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.link-title {
  display: inline-block;
  margin: 0;
  padding: 0;
}

li p {
  width: 120px;
}

#contact {
  text-align: center;
  background-color: #bf9268;
  color: #333;
  padding: 20px;
  font-size: 1.5rem;
}

#contact p {
  font-size: 1rem;
  margin: 20px auto 10px;
}

#particles-js canvas {
  display: block;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1.4s ease;
  transition: opacity 0.8s ease, transform 1.4s ease;
}

#particles-js {
  width: 100%;
  height: 100%;
  position: fixed !important;
  z-index: -10;
  top: 0;
  left: 0;
}

@media (min-width: 1000px) {
  .flexwrap {
    flex-direction: row;
  }
}
