header {
    background-color: #57ADE0;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    position: relative; 

}

body{
    margin: 0px;
}

.size{
    font-size: 19px;
    font-weight: 500;
    
}

a.size ,a:hover {
    color: #57ADE0;
  }

.top-social {
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust as needed */
    transform: translateY(-50%);
}

.top-social a {
    color: #ffffff; 
    padding: 5px; 
}

nav {
    margin-top: 10px; /* Add margin to separate nav from hr line */
}

nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    font-family: sans-serif;
    color: #616161;
    text-decoration: none;
}

/* Default styles */
.social-icons {
    text-align: center; 
}






/* Media query for mobile devices */
@media screen and (max-width: 600px){
    .top-social {
        display: flex;
        justify-content: center;
        margin-top: 0px;
        position: static;
        transform: translateY(25%);

      }
    
      .top-social a {
        margin-right: 2px;
      }
      
      header {
        padding: 10px 5px;
      }
  
      nav ul li {
        display: block;
        margin: 10px 0;
      }

      .contact-info span {
        display: block;
    }

    
}
 
   /* Section Footer  */


footer {
    background-color: #57ADE0;
    color: white;
    padding: 20px 0; 
    width: 100%;
    bottom: 0;
    /* position:relative; */
}

.footer_row {
    display: flex;
    justify-content:space-evenly;
    margin: 0 auto;
    width:100%;
    
}



.footer_column  {
   
    position: relative;
    /* width: 30%;  */
    /* border:1px solid black; */
}

.margin{
    /* display: block; */
    margin-top: 50px;
    /* margin-bottom: auto; */
}






@media screen and (max-width: 600px) {
    footer{
        bottom: 0;
        position: static;
    }
    .footer_row {
        flex-direction: column;
        align-items: center;
        bottom: 10px;
    }

    .footer_column {
        width: 80%;
        /* transform: translateX(-50%); */
    }

    .footer_column img {
        height: auto; 
        width:100%;
    
    } 
}

.no-underline {
    text-decoration: none;
}