@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap');
*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body {
  font-family: "Montserrat", sans-serif;
  background-image: url(arkaplan.png);
  background-size:auto;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 10%;
  background-attachment: fixed;
}

.container{
    background-color: rgba(255, 255, 255, 0);
    height: 20vh;
    background-size: 100% 100%;
    max-width: 100%;
}

.container .navbar{
    width: 100% ;
    height: 120px ;
    background: #4CAF50;
    display: flex; 
    justify-content: space-between;
    align-items: center; 
}

 .logo{
    display: flex;
    margin-left: 5%;
    margin-top: 2%;
    
}

.logo a img{
    margin-left: 5px;
    margin-top: 10px;
    margin: 5;
    height: 150px;
    width: 100%;
    
}

.navbar ul {
    list-style: none;
    float: right;
    display: flex;
    justify-content: space-evenly;
    max-width: 50%;
}

.navbar ul li {
  display: flex;
  margin-right: 20px;
  margin: 0 8px;
  cursor: pointer;
  position: relative;
}

.navbar ul li a {
    color: #fff; /* white text color */
    text-decoration: none; /* remove underline */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    padding: 6px 13px;
    display: flex;
    
  }
  .navbar ul li a.active, .navbar ul li a:hover {
    background: white;
    color: black;
    border-radius: 4px;
  }
.navbar ul li a:hover {
    color: black; /* light gray text color on hover */
    text-decoration: none; /* add underline on hover */
    background-color: #fff;
    border-radius: 5px;
  }
/* ... (rest of the code remains the same) */

.text-box{
    border: solid 2px ;
    border-radius: 1rem;
    margin-top: 3rem;
    background-color: white;
    margin: 3rem;
    margin-left: 15%;
    max-width:80%;
    box-shadow: 10px rgba(87, 192, 87, 0.1);
}
.text-area {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    max-width:100% ;
    padding: 1rem;
    text-align: justify;
    user-select: none;
}

.text-area h2 { 
    border-bottom: #4CAF50 2px solid;
    font-family: sans-serif;
    }

.text-area h3 { 
border-bottom: #4CAF50 2px solid;
}

footer {
    position: relative;
    text-align: center;
    background-color:#666666d5;
    color: white;
}
footer a {
color: #4CAF50;
}
@media only screen and (max-width: 480px) {
    .container .navbar {
        height: 50px;
    }

    .logo a img {
        height: 60px;
        width: 60px;
        float: left;
    }

    .navbar ul {
        max-width: 150%;
        
    }

    .navbar ul li {
        margin-right: 0px;
       margin: -3.5px;
       display: flex;
       flex: 10%;

    }

    .navbar ul li a {
        font-size: 14px;
        display: flex;
       float: left;
        
    }
    .navbar ul li a:hover {
        color: black; /* light gray text color on hover */
        text-decoration: none; /* add underline on hover */
        background-color: #fff;
        border-radius: 5px;
        padding: 3px 16px;
      }
    .text-box {
        margin-top: 1.5rem;
        margin-left: 5%;
        max-width: 90%;
    }

    .text-area {
        font-size: 14px;
    }

    footer {
        padding: 0.5rem;
        max-width: 130%;
    }
}