*{
    box-sizing: border-box;
}
body {
    background-image: url("../assets/i4.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    margin-top: 0;
    min-height: 100vh;
    
  }
  h1{
    text-align: center;
    margin-top: 20px;
  }
  .hamburger {
    width: 30px;
    height: 4px;
    background-color: #333;
    margin: 6px 0;

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .menu-toggle{
    display: none;
  }


.navbar{
    display: flex;
    justify-content: space-around;
    list-style: none;
    background-color:#05469cc2;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    top: -15px;
}


.mike{
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    margin-bottom: 50px;
}
.navbar a{
    text-decoration: none;
    font-size: 20px;
    color: #FFFF00;
  }
  .navbar a:hover{
    box-sizing: border-box;
    font-size: 22px;
    color: #00ff00;
    background-color: #33333356;
    padding: 5px;
  }
  .mikeimage{
    border-radius: 50%;
  }
  .text{
    text-align: center;
    font-size: 1.8vw;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
    margin-top: 79px;
    color: white;
}

footer {
    background-color: #05469cc2; /* Footer background color */
    color: #fff; /* Text color */
    text-align: center; /* Align text in the center */
    position: fixed; /* Fix the footer at the bottom */
    width: 100%; /* Full width */
    bottom: 0; /* Stick it to the bottom of the viewport */
    left: 0;
  }

  @media screen and (min-width: 701px) and (max-width:759px)  {
    .navbar a{
      text-decoration: none;
      font-size: 10px;
      
    }

  }


  @media screen and (max-width: 870px) {
    


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      .welcome{
        text-align: center;
        font-size: 20px;
        color: rgba(146, 146, 4, 0.842);
        margin-bottom: 20px;
      }

    .navbar{
        display: none;
        width: 100%;
      }
    
    
    .menu-toggle {
        display: block;
        cursor: pointer;
        padding:5px;
        background-color: rgb(14, 66, 124);
        border-radius: 10px;
      }

      
  
      .hamburger {
        width: 30px;
        height: 4px;
        background-color: #f1e5e5;
        margin: 6px 0;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
      }


      .navbar {
        list-style: none;
        width: 100%;
        background-color: rgba(2, 9, 39, 0.151);
        align-items: center;
        flex-direction:row;
        text-align: center;
       
      }
      .navbar.active {
        display: block;
      }

      .navbar li {
        margin: 30px;
        background-color: rgb(134, 83, 83);
      }
      /* Animation for hamburger icon */
    .menu-toggle.active .hamburger:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
      }
  
      .menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
      }
  
      .menu-toggle.active .hamburger:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
      }



      .mike{
        
        flex-direction: column;
        align-items: center;
        margin:0 auto;
        margin-top:20px;
        padding: 0;
        background: #3333339f;
        width: 70%;
        border-radius: 20px;
        margin-bottom: 50px;
        
    }
    .text{
        width: 50%;
        font-size: 13px;
        margin-top: 0;
        margin-bottom: 100px;
    }



  

  }