.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.also {
    display: grid;
    grid-template-columns: 300px 200px;
    grid-template-rows: 200px 150px;
    grid-gap: 10px;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.also img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.image-container:hover .overlay {
    opacity: 1;
}

.overlay h5 {
    font-family: algerian;
    color: white;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.overlay p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
    color: white;
}

.small-btn {
    font-family: algerian;
    font-size: 14px;
    color: black;
    margin: 0;
    padding: 8px 16px;
    background: white;
    border: 2px solid white;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.small-btn:hover {
    background: transparent;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

h5 {
    font-family: algerian;
    color: black;
}

.input {
    font-family: algerian;
    color: black;
    width: 200px;
    height: 50px;
    border: 2px solid black;
}

.input_area {
    font-family: algerian;
    color: black;
    width: 200px;
    height: 200px;
    border: 2px solid black;
}

button {
    font-family: algerian;
    font-size: 1.5rem;
    color: black;
    margin: 0;
    padding: 12px 30px;
    background: white;
    border: 2px solid black;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    line-height: 1.3;
}