body {
    margin: 0;
    padding: 0;
    width:100vw;
    height: auto;
    
    font-family: 'Times New Roman', Times, serif, sans-serif;
    background-color: #ffffff;
    color: #333;
}
.container{
  width: 100vw;
  height: auto;

  justify-content: center;
  
}
h1 {
    text-align: center;
}
header {
    background: #0078d7;
    color: white;
    padding: 1rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.headlogo img {
    width: auto;
    height: 75px; 
    padding-top: 20px;
}
.minibutton{
    display: grid;
    grid-template-columns:repeat(3,170px);
    gap: 20px;
    justify-items: center;
    justify-content: center;
    padding-top: 20px;
}
.minibutton img {
    width: auto;
    height: 40px
}

.icons {
     display: grid;
    grid-template-columns: repeat(3, 200px); /* 3 columns, equal width */
    grid-template-rows: repeat(2, 240px);  /* 2 rows w auto height */
    gap: 10px; 
    justify-items: center; 
    align-items: center; 
    justify-content: center;
    padding-top: 20px;
    padding: 0 200px;
    box-sizing: border-box;
    margin: 0 auto; 


}

.icons img {
    width: 200px; 
    height: auto; /* Maintain aspect ratio */
}

