* {
  margin: 0vw;
  padding: 0vw;
  box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    font-family:Helvetica, Arial, sans-serif;
    color: rgb(39, 1, 136)
}

header {
    text-align: center;
    font-family:Helvetica, Arial, sans-serif;
    width: 100%;
    color: rgb(31, 8, 100);
    background-color: rgb(226, 202, 242);
}
h1 {
    margin-top: 1vh;
    margin-bottom: 1vh;
    font-size: xxx-large;
}

a {
    color: inherit;
    text-decoration: none;
}
.details-bar {
    text-align: center;
    display: flex;
    flex-direction: column;
}
.detail-item{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.4%;
    font-size: 1.5vh;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1vh;
    background-color: rgb(187, 146, 249);
}
.nav-bar {
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: 5vh;
    display:flex;
    flex-direction: row;
    font-size: 1.5vh;
    gap: 2vw;
}

.nav-item {
    height: 100%;
    width: 15vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    background-color: rgb(187, 146, 249);
    font-weight: 500;
    
}

body {
    width: 100%;
    background-color: rgb(244, 215, 255);
}

h2 {
    padding-top: 2vh;
    margin-left: 1%;
    font-size: xx-large;
}

h3 {
    margin-top: 2vh;
    padding-top: 0.5vh;
    margin-left: 2%;
}

h4 {
    padding-top: 2vh;
    margin-left: 2%;
   }
h5 {
    padding-top: 4vh;
    padding-bottom: 2vh;
}

p {
    padding-top: 0.5vh;
    margin-left: 2%;
}

ul {
    list-style: none;     /* remove bullets */
    margin-left: 3%;
}

li {
    padding-top: 0.25vh;
}

.add-exp, .edu-list, .vol-list, car-sum {
    margin-top: 1vh;
}


.nav-item:hover{
    transform: scale(1.5);
    color: rgb(216, 146, 249);
    background-color: rgb(73, 39, 100);
    transition: 1s
}

.detail-item:hover{
    transform: scale(1.5);
    transition: 1s
}
.counter {
    text-align: right;
}

.counter__label, .counter__value {
      text-align: center;
}

@media (max-width: 800px) {
  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 12px;

    position: absolute;
    top: 64px;
    right: 16px;

    background: rgb(255, 255, 255);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .nav.open {
    display: flex;
  }
}

@media (max-width: 800px) {

  .nav-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 10px 0;
  }

  .nav-item {
    width: 45%;
    height: 45px;
    font-size: 14px;
  }

  .nav-item:hover {
    transform: none;
  }
}
