<style>
.centered-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    height: 100vh;
    box-sizing: border-box;
}

.centered-image-container img {
    border-radius: 0; /* Обязательно убрали любые закругления */
    width: clamp(100px, 50vw, 700px);
    height: auto;
}
</style>