* {
  font-family: "Courier Prime", monospace;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* NAVIGATION BAR*/
header {
  padding: 1.5vw;
  background-color: white;
  position: sticky;
  z-index: 600;
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 0 2vw;
}

a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: black;
  transition: 0.3s ease;
}

a:hover {
  color: #c47e00;
}

.logo {
  width: 10vw;
  max-width: 100%;
  min-width: 7rem;
  max-height: 100%;
  object-fit: contain;
  transition: 0.3s ease;
}
.logo:hover {
  width: 10.3vw;
}

/*Welcome and Skills section*/

#welcomesection {
  display: flex;
  flex-direction: column;
  align-items: center;
}
h2 {
  color: #c47e00;
  font-size: 20px;
  margin: 10px;
}

p {
  font-size: 15px;
  margin: 2px;
}

#skillscontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1vw;
}

h1 {
  font-size: 25px;
  font-weight: 500;
}

#skills {
  display: flex;
  justify-content: center;
}

.skill-window {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3vw;
  width: 5vw;
}
.skill-window img {
  width: 5vw;
  object-fit: contain;
}
.skill-window p {
  text-align: center;
  font-size: 15px;
  margin-top: 10px;
}
