body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

main {
    flex: 1;  /* Takes up remaining space */
}

.footer {
    margin-top: auto;  /* Pushes footer to bottom */
}
  
.profile-img {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #f8f9fa;
}

.skills-section img {
    transition: transform 0.2s;
}

.skills-section img:hover {
    transform: scale(1.1);
}