
img { 
    max-width: 100%; 
   
}   


.container123 {
    position: relative;
    text-align: center;
    margin: auto;
    max-width: 1250px;
}


.curimage {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 300px;
}

.imageInt1 {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2em;
    font-weight: bolder;
    background: rgba(0, 0, 0, 0.6);
}

.image__img {
    display: inline-block;
    width: 100;
    height: 300px;
    height: 300px;
}

.image__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.image__overlay--blur {
    backdrop-filter: blur(5px);
}

.image__overlay--primary {
    background: #009578;
}

.image__overlay--primaryBlue {
    background: #5d90f0;
}

.image__overlay > * {
    transform: translateY(20px);
    transition: transform 0.25s;
}

.image__overlay:hover {
    opacity: 1;
}

.image__overlay:hover > * {
    transform: translateY(0);
}

.image__title {
    font-size: 2em;
    font-weight: bold;
}

.image__description {
    font-size: 1.0em;
    margin-top: 0.5em;
}

a:link {
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:visited {
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:hover {
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
  }