/* 1. BODY */
body {
    font-family: 'Segoe UI', sans-serif;
    padding-bottom: 50px;
    background: linear-gradient(to right, #5A189A, #1E3A8A);
}



* {
    font-family: sans-serif;
}

a {
    text-decoration: none;
    color: #7ec8e3;  
    padding: 3px;
    border-radius: 5px;
}

/* 2. NAVBAR */
.navbar {
    display: flex;
    gap: 20px;
    padding: 10px;
    background-color: #2a2a2a;
    border-radius: 20px;
    color: white;
    align-items: center;
}

.navbar > a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.navbar > .title {
    font-weight: bold;
    font-size: larger;
}

.navbar > .logo {
    padding-left: 10px;
    width: 80px;       
    height: auto;      
    vertical-align: middle; 
    margin-right: 10px; 
}

/* 3. MAIN */

h2 {
    color: white;
    text-align: center;
}



.IAS {
    justify-content: center;
    display: flex;
    gap: 20px;
}




.news {
  color: white;
  background-color: rgba(0,0,0,0.4);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);

  padding: 10px;
  border-radius: 10px;
  width: 40%;
  padding-bottom: 15px;
}


.profile1 {
    display: flex;
    color: aliceblue;
    background-color: rgba(0,0,0,0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    padding: 12px;

    justify-content: center; 
    display: block;
    text-align: center;
    align-items: center;
    width: 17%;
    border-radius: 10px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    width: 200px;
    vertical-align: middle;
    margin-right: 10px;
}


.textdad {
     padding: 0.7%;
     display: flex;  
     background-color: rgba(0,0,0,0.4); 
     box-shadow: 0 4px 12px rgba(0,0,0,0.5);

     align-items: center;
     padding-left: 0.6%;
     border-radius: 12px; 
}


.text { 
    color: white;
    padding: 1px;

}

@media (max-width: 768px) { 
    .textdad img{
        display: none; 
    }
}



/* ai genorated footer logic */

.footer {
  display: flex;
  position: fixed;       
  bottom: 0;              
  left: 0;

  /* style (end of gpt code) */

  width: 100%;            
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
  color: #fff;
  font-weight: bold;  
  align-items: center;       
}

.footer img {
  width: 80px; 
}