body {
    margin: 0;
    background-color: #4B5563;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}


::-webkit-scrollbar {
    width: 10px;
    border-radius: 10px;
  }
  

  ::-webkit-scrollbar-track {
    background: #4B5563;
    border-radius: 10px;
  }
  

  ::-webkit-scrollbar-thumb {
    background: #06b6d4;
    border-radius: 10px;
  }
  

  ::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
    border-radius: 10px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    background-color: #1F2937;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; 
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    height: 75px; 
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

li {
    display: inline-block;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu-icon {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.about {
    margin: 250px 300px;
}

h1 {
    font-size: 96px;
    font-weight: bold;
    color: #06b6d4;
}

.about img {
    max-width: 100%;
    height: auto; 
    margin-left: 20px; 
}

.about p {
    font-size: 20px;
    color: white;
    max-width: 450px;
}

.welcome {
    display: flex; 
    align-items: center;
    justify-content: space-between; 
}

.projects {
    margin: 250px 300px 0px 300px;
    text-align: center;
}

.projects h1 {
    font-size: 72px;
    font-weight: bold;
    color: #06b6d4;
}

.p1ngu-studios {
    display: flex; 
    align-items: center;
    justify-content: center; 
    text-align: left; 
}

.text-content {
    display: flex;
    flex-direction: column;
    max-width: 600px;
}

.p1ngu-studios img {
    max-width: 300px;
    height: 300px;
    margin-left: 20px; 
}

.projects a {
    color: #06b6d4;
}

.projects h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
}

.projects p {
    color: #ffffff;
    font-size: 20px;
}

button {
    background-color: #06b6d4;
    color:#ffffff;
    border: none;
    border-radius: 70px;
    width: 250px;
    height: 50px;
    font-size: 24px;
}

.contact {
    display: flex; 
    align-items: center;
    justify-content: center;
    height: 100vh; 
    margin: 0; 
}

.contact-continer {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    background-color: #1F2937;
    width: 500px;
    padding: 20px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

h2.contact-header {
    color: #ffffff;
    margin-bottom: 20px;
}

label {
    color: #ffffff;
    margin-bottom: 5px;
}

input, textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background-color: #2d3748;
    color: #ffffff;
}

textarea {
    resize: none; 
}

.button-container {
    display: flex;
    justify-content: center; 
}

button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #06b6d4;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0284c7;
}

.footer {
    width: 100%;
    height: 100px;
    background-color: #374151;
    display: flex; 
    align-items: center;
    color: #ffffff;
}

.footer-text {
    margin-left: 350px;
}

@media (max-width: 480px) {
    ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1F2937;
        position: absolute;
        top: 75px;
        left: 0;
    }

    ul.active {
        display: flex;
    }

    li {
        text-align: center;
        width: 100%;
    }

    .menu-icon {
        display: block;
    }
    .about {
        margin: 250px 50px;
    }
    
    h1 {
        font-size: 72px;
        font-weight: bold;
        color: #06b6d4;
    }
    
    .about img {
        display: none;
    }
    
    .about p {
        font-size: 20px;
        color: white;
        max-width: 450px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .welcome {
        display: block; 
        text-align: center; 
    }
    
    .text-content {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .projects {
        margin: 250px 50px;
        text-align: center;
    }
    
    .projects h1 {
        font-size: 62px;
        font-weight: bold;
        color: #06b6d4;
    }
    
    .p1ngu-studios {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        text-align: center;
    }
    
    .text-content {
        max-width: 600px;
        margin-bottom: 20px; 
    }
    
    .p1ngu-studios img {
        max-width: 300px;
        height: 300px;
        margin-top: 20px; 
    }
    
    .projects a {
        color: #06b6d4;
    }
    
    .projects h2 {
        color: #ffffff;
        font-size: 42px;
        font-weight: bold;
    }
    
    .projects p {
        color: #ffffff;
        font-size: 20px;
    }
     
    .footer-text {
        margin-left: 50px;
    }
}