@import url('https://fonts.cdnfonts.com/css/inter');
body {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: Inter, sans-serif;
  
.content {
 display: flex;
 justify-content: center;
 align-items: center;
 height: 100vh;
 padding: 0px;
}

.image-container {
 position: relative;
 display: inline-block;
 overflow: hidden;
 transition: transform 0.3s ease-in-out;
}

.image-container img {
 max-width: 100%;
 max-height: 100%;
}

.image-container:hover {
 transform: scale(1.1);
}

.hover-text {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.6);
 color: white;
 display: flex;
 justify-content: center;
 align-items: center;
 transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
 font-size: 18px; /* Add your desired font size here */
}

.image-container:hover .hover-text {
 background-color: rgba(0, 0, 0, 0.8);
 color: #ffcc00;
}
