*{
  color: white;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h1 {
  font-size: 30px;
  margin-left: 3%;

}

.profile-icon {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: auto;
}

.about-image{
  height: 50vh;
  width: 58vh;
  border-radius: 3%;
  border-style: solid;
  border-color: white;
}

.about-text {
  font-size: 19px;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 7%;
  z-index: 10;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background-color: var(--cg-black);
  color: var(--cg-white);
  padding: 0px 0px;
  background-color: #192f56;
  border-radius: 10px;
}

.nav-list {
  display: flex;
  flex-direction: row;
  position: relative;
  right: 30px;
  list-style: none;
}

.navbar a {
  color: var(--cg-white);
  font-weight: bold;
  margin: 0 12px;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 30px;
  box-shadow: inset 0 0 0 0 #54b3d6;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.navbar a:hover{
  color:#54b3d6;
  box-shadow: inset 200px 0 0 0 white;
  color: black;
  border-radius: 2px;
}

.section-title {
  border-style: solid;
  border-color: white;
  text-align: center;
}

#resume-main {
  margin-top: 3%;
  width: 90%;
  border-radius: 10px;
  margin-left: 5%;
}

#main-contact {
  margin-top: 5%;
  width: 70%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  resize: none;
  color: black;
}

#contact-form {
  border-style: solid;
  border-radius: 10px;
  border-color: white;
  padding-left: 3%;
  padding-top: 2%;
}

#submit {
  height: 30px;
  width: 80px;
  color: white;
  background-color: #1f3e74;
  border-style: solid;
  border-color: white;
  border-radius: 7px;
  margin-bottom: 1.5%;  
}

#submit:hover {
  color: black;
  background-color: white;
}

#submit:active {
  color: black;
  background-color: #54b3d6;
}

.contact-images {
  width: 7%;
  height: 7%;
}

.project-details {
  border-style: solid;
  border-color: white;
  border-radius: 15px;
}

.project { 
  text-align: center;
  padding-top: 5%;
}

.project-name {
  font-size: 30px;
  font-style: italic;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cg-black);
  color: var(--cg-white);
  position: -webkit-sticky;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
  background-color: #192f56;
}

