body{
 background-color: black;
 font-family: "Source Code Pro";
 color:#bcbebf
}

h1, h2{
    color: white;
    text-align: center;
    font-family: "BBH Bartle";
}

#myaiskills{
   color: white;
    text-align: center;
    font-family: "BBH Bartle";
}

p{
  max-width: 75%;
  margin:auto;
}
img{
    max-width: 50%;
    height:auto;
}

#aitest{
  text-align: center;
}

#bluecolor{
    color: #a5d6ff;
}

#greencolor{
   color: #6cc574;
}

#redcolor{
    color: #ed978e;
;
}

.philosophy{
    outline: 2px solid #0000ff;
    padding: 20px;
    margin: 20px auto;
    max-width: 75%;
    border-radius: 10px;
    text-align: center;
     box-shadow: 0px 0px 10px #0000ff;
}

.menu-item {
    font-size: 20px;
    margin: 20px;
    font-family: 'Inter';
    text-decoration: none;
    color: white;
}

.menu-item:hover {
    color: #0000ff;
    transition: 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 10px;
    background-color: black;
    border: 5px solid  #000083;
    border-radius: 25px;
}

body {
    display: flex;
    flex-direction: column;    
    min-height: 100vh;         
}

/* Step 2 — tell the main content to grow and fill all available space */
/* This pushes the footer down to the bottom */
main {
    flex-grow: 1;    /* this is the magic — it stretches to fill the gap */
}

/* Step 3 — the footer just sits naturally at the bottom */
footer {
  text-align: center;
font-family: Arial, Helvetica, sans-serif;}

a:visited {
    color: white;  
}

/* sidenav hidden by default */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    box-shadow: 0px 0px 10px #0000ff;
    overflow-x: hidden;
    transition: width 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.sidenav a {
    color: white;
    font-family: 'Inter';
    font-size: 20px;
    text-decoration: none;
    padding: 15px 20px;
}

.sidenav a:hover {
    color: #0000ff;
    transition: 0.3s;
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
}

/* hamburger hidden on desktop, visible on mobile */
.hamburger {
    display: none;
    font-size: 36px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 1080px) {
    nav {
        display: none;
    }
    .hamburger {
        display: block;
    }
}
/* for mobile */

@media (max-width: 1080px) {

    nav {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    p {
        max-width: 90%;
    }

    img {
        max-width: 90%;
    }

    .philosophy {
        max-width: 90%;
    }

}

