body{
    background-color: rgb(255, 255, 255);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;

}

a{
    text-decoration: none;
    color: black;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #010770, #4a4aff);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-size: 17px;
  transition: background 0.3s ease;
}

nav * {
    color: white;
}

.nav-container{
    position: relative;
    width: 70%;
    display: flex;
    align-items: center;
}

.home-button{
    flex: 25%;
    text-align: left;
}

.home-button > a {
    font-size: 19px;
}

.nav-right{
    flex: 75%;
    text-align: right;
}

.nav-right > a{
    display: inline;
    width: auto;
    padding: 10px 15px;
}

.nav-right > a {
  position: relative;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.nav-right > a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 50%;
  bottom: 0;
  background: white;
  transition: all 0.3s ease;
}

.nav-right > a:hover {
  color: #ddd;
}

.nav-right > a:hover::after {
  width: 100%;
  left: 0;
}

.nav-right > a.nav-selected {
  color: #ddd; /* optional highlight */
}

.nav-right > a.nav-selected::after {
  width: 100%;
  left: 0;
}

.content{
    position: absolute;
    top: 100px;
    width: 70vw;
    left: 15vw;
    padding-bottom: 100px;
}

.nav-button{
    background-color: transparent;
    border: none;
    position: absolute;
    right: 0;
}

.nav-button:hover{
    cursor: pointer;
}

.short div{
    width: 30px;
    height: 2px;
    background-color: white;
    margin:9px;
}

.nav-button{
    display: none;
}

@media screen and (max-width: 1310px){

    .nav-button{
        display: block;
    }

    nav{
        top: 0;
        padding: none;
        margin: none;
        z-index: 2;
    }

    .nav-container{
        width: 90vw;
        height: 50px;
    }

    .home-button > a {
        font-size: 20px;
    }
    
    .nav-right {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #010770, #4a4aff);
    padding: 15px 0;
    text-align: center;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  
  .nav-right > a.nav-selected::after {
    width: 0;
    left: 30%;
  }

  .nav-right > a:hover::after {
    width: 40%;
    left: 30%;
  }

  .nav-right.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-right > a {
    padding: 12px;
    font-size: 18px;
  }
    
    .home-button > a {
    font-size: 18px;
  }
  nav {
    padding: 10px 0;
  }

    .contactInnerContainer{
        width: 80vw;
    }

    .content{
        position: absolute;
        top: 100px;
        width: 80vw;
        left: 10vw;
        overflow: auto;
        padding-bottom: 100px;
    }

    .nav-button .menu {
  width: 28px;
  height: 3px;
  background: white;
  margin: 6px 0;
  transition: 0.3s;
}

.nav-button.open .menu:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-button.open .menu:nth-child(2) {
  opacity: 0;
}

.nav-button.open .menu:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

}


footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.version {
  font-size: 0.9rem;
  color: #666;
}

/* Section titles */
h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
  border-left: 3px solid #444;
  padding-left: 0.6rem;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
}
