* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.logo img {
    width: 100px;
  }

/* Off-screen menu */

.off-screen-menu {
    display: none;
    background-color: rgb(243, 243, 243);
    height: 51vh;
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10%;
    align-items: start;
    text-align: center;
    font-size: 3rem;
    transition: 5s;
}

.ham-menu-items ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-top: 10px;
}

.ham-menu-items ul li {
    text-align: left;
    font-size: 15px;
    font-family: "Noto Sans", sans-serif !important; 
    font-weight: 300;
    text-decoration: none;
    list-style-type: none;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.ham-menu-items ul li a {
    text-decoration: none;
}

.ham-menu-items ul li a:hover {
    color: red;
}

.ham-menu-items {
    margin-top: 64px;
    margin-left: -85px;
    width: 27%;
    border-top: solid black 1px;
}

.off-screen-menu li a {
    color: black;
}


/* Navigation */
nav {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 95%;
  left: 2.5%;
  top: 1%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

nav.hidden {
  opacity: 0;
  visibility: hidden;
}


nav > h1 > a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

/* Ham menu */
.ham-menu {
    height: 40px;
    width: 30px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
}

.ham-menu span {
    height: 1px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.nav-bar-logo.active {
    color: rgb(0, 0, 0) !important;
}


.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}

.ham-menu.active span {
    background-color: rgb(0, 0, 0);
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-bar-section {
    position: relative;
    z-index: 1000;
}

.nav-bar-logo a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-bar-logo.black a {
  color: black;
}

@media (max-width:768px) {
    .off-screen-menu {
        display: none;
        background-color: rgb(243, 243, 243);
        height: 60%;
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10%;
        align-items: center;
        text-align: center;
        font-size: 3rem;
        transition: 1s;
        padding-top: 50px;
        
    }
    .ham-menu-items {
        margin-top: 0px;
        width: 27%;
        border-top: solid black 1px;
        margin-left: -60%;
    }
    .ham-menu-items ul li {
        text-align: left;
        font-size: 12px;
        font-family: "Noto Sans", sans-serif !important; 
        font-weight: 300;
        text-decoration: none;
        list-style-type: none;
        line-height: 1.6;
        padding: 0;
    }
    
    
  }
/* Navigation */
nav {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 95%;
  left: 2.5%;
  top: 1%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

nav.hidden {
  opacity: 0;
  visibility: hidden;
}


nav > h1 > a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

/* Ham menu */
.ham-menu {
    height: 40px;
    width: 30px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
}

.ham-menu span {
    height: 1px;
    width: 100%;
    background-color: #000000;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.nav-bar-logo.active {
    color: rgb(0, 0, 0) !important;
}


.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}

.ham-menu.active span {
    background-color: rgb(0, 0, 0);
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-bar-section {
    position: relative;
    z-index: 1000;
}

.nav-bar-logo a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-bar-logo.black a {
  color: black;
}
@media (max-width:1100px) {
    .off-screen-menu {
        display: none;
        background-color: rgb(243, 243, 243);
        height: 80% !important;
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        flex-direction:row;
        align-items: start;
        justify-content: center;
        gap: 10%;
        text-align: center;
        font-size: 3rem;
        transition: 1s;
        padding-top: 50px;
        
    }
} 


@media (max-width:768px) {
    .off-screen-menu {
        display: none;
        background-color: rgb(243, 243, 243);
        height: 90% !important;
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10%;
        align-items: center;
        text-align: center;
        font-size: 3rem;
        transition: 1s;
        padding-top: 50px;
        
    }
    .ham-menu-items {
        margin-top: 0px;
        width: 27%;
        border-top: solid black 1px;
        margin-left: -60%;
    }
    .ham-menu-items ul li {
        text-align: left;
        font-size: 12px;
        font-family: "Noto Sans", sans-serif !important; 
        font-weight: 300;
        text-decoration: none;
        list-style-type: none;
        line-height: 1.2 !important;
        padding: 0;
    }
    
    .user-position {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
  }

.content {
   width: 100%;
   height: 100%;
   background-color: rgb(252, 244, 235);
   display: flex;
   flex-direction: column;
   justify-content: start;
   align-items: start;
   padding: 30px;
   padding-top: 100px;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.content h3 {
    font-size: 1.5rem;
    margin-top: 20px;
}

.content p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.8;
}
.content h1 {
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    margin-top: -3px;
}
.h1-position {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* Footer styles */
.footer {
    height: 20vh;
    width: 100%;
    background-color: rgb(238, 236, 236);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 20px 0;
    text-align: center;
}

.footer-mail,
.footer-social-media {
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    

    
}

.footer-social-media p a {
    text-decoration: none;
    color: black;
}

.footer-social-media p a:hover {
    text-decoration: none;
    color: rgb(182, 63, 63);
}