* {
    box-sizing: border-box;
}
body {
    font-family:cursive;
    margin: 0;
    padding: 0;
font-size: 16px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #cecbcb;
    padding: 20px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left img {
    width: 940px;
    margin-right: 20px;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-center .name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.header-center .cv-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #022850;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.header-center .cv-button:hover {
background-color: white;
color: #333;
}

.header-right .menu-icon {
    position:fixed;
    top:0px;
    right:20px;
    font-size: 30px;
    cursor: pointer;
}

.hamburger-menu {
    position:fixed;
    top: 0;
    right:-1000px;
    flex-direction: column;
    display:none;
    width: 250px;
    background-color: #333;
    transition: right 0.3s ease;
    color: white;
padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    
}

.hamburger-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    margin: 10px 0;
}

#hamburger-menu a:hover {
    background-color: orange;
}

h1, h2 , h3 {
    margin-left: 20px;
}
.project-text p {
    margin-left: 20px;
    margin-right: 20px;
    
 }  

.more {
    display: none;
 }
.project {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }
  
  .project-text,
  .project-visual {
    flex: 1;
  }
  
  .project-visual img {
    display: block;
    margin-bottom: 10px;
    max-width: 100%;
    height: auto;
  }
  
#contact  {
    display: block;
    background-color: #cecbcb;
}
@media only screen and (max-width:1280px) {
    .header-left img  {
       position:relative;
        display:none;
           z-index: 0;
    }
 }
    
 @media only screen and (max-width:1280px) {
 .header-center .cv-button {
    display:fixed;   
     }
 }

 @media only screen and (max-width:1280px) {
.header-right .menu-icon {
    position:absolute;
    display: block;
    right: 1rem;
    }
 }
 @media only screen and (max-width:1280px) {
.hamburger-menu {
position:absolute;
    display: none;
right: 3rem;
    }        
    }

   @media (max-width: 1280px) {
    .project {
      flex-direction: column;
    }
  
    .project-text,
    .project-visual {
      width: 100%;
    }
  }
  
