.body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    background: #a1c3ff;
    position: relative;

}



.logo{
    font-size: larger;
    text-transform: uppercase;


    
}
.navbar-custom {
    background-color: #3474e6;
   
      
}
.nav-item a,.logo {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    font-size: 16px; /* Adjust the font size as needed */
    color: #fff; /* Ensure the text color is white */
    /* text-transform: uppercase; */
     /* Example of additional style: makes the text uppercase */
}




.navbar-custom .nav-link,
.navbar-custom .navbar-brand,
.header h1,
.header p {
  color: #FFF !important;
}
.header{
    background-color: #0151cc;
    min-height: 1%;
}

.header img{
    max-width: 60%;
    margin: 2% 0;
    
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: center;
}


@media(max-width: 768px){
    .header .container {
        flex-direction: column;
        padding-top: 20px;
        text-align: center;

    }
    .boxes .container{
        display: block;
    }
    .header img{
        max-width: 80%;
        margin-bottom: 5px;
    }
}



/* style.css */

/* Ensure the body takes full height */

  /* Make the main content stretch to fill available space */
/* Ensure the html and body take full height */
html, body {
    height: 100%;
    margin: 0;
  }
  
  /* Main container setup */
  .main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the container takes up full viewport height */
  }
  
  /* Ensure the main content area grows to fill available space */
  main {
    flex: 1;
  }
  
  /* Footer styles */
  footer {
    background-color: #343a40; 
    color: #ffffff; 
    padding: 1rem 0;
    text-align: center;
    margin-top: auto; /* Pushes the footer to the bottom of the container */
  }
  
  /* Footer links styling */
  footer a {
    color: #ffffff; 
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  
main{
    display: flex;
    flex-direction: column;
}

.panel{
    display: flex;
    gap: 3px;
    margin: 8px;
    padding: 2px;
    /* background-color: black; */
    /* color: white; */
    flex-wrap: wrap;
    

}
.item-1{
    margin-right: auto;
    margin-left: 20%;
}
.item-3{
    margin-right: 20%;
}


@media(max-width: 900px){
    .panel{
        display: flex;
        gap: 3px;
        margin: 8px;
        padding: 2px;
        flex-direction: column ;
        align-items: center;
        justify-content: center;
        /* background-color: black; */
        /* color: white; */
        flex-wrap: wrap;
    }
    .item-1{
        margin: auto;
    }
    .item-3{
        margin: auto;
    }
    
    
}

@media(max-width: 1100px){
    .panel{
        display: flex;
        gap: 3px;
        margin: 8px;
        padding: 2px;
        flex-direction: column ;
        align-items: center;
        /* justify-content: center; */
        /* background-color: black; */
        /* color: white; */
        flex-wrap: wrap;
    }
    .item-1{
        margin: auto;
    }
    .item-3{
        margin: auto;
    }
}


.results{
    background-color: #2f86c0;
    color: white;
    display: flex;
    flex-direction: column ;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px  ;
    width: 60%;
    align-self: center;
    margin-bottom: 5%;
    padding: 3px;
 
}
@media (max-width: 1100px) {
    .results{
    width: 90%;
    }
}
