.blogid {
    text-align: center;
    flex-direction: column;
}

.keskmine {
    margin: 0 auto;
    max-width: 1200px;
    gap: 80px; 
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blogi {
    text-align: justify;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blogi img {
    flex: 0 0 auto;
    width: 50%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}

p {
    font-size: 20px;
}

h3 {
    font-size: 30px;
}

a {
    color: black
}

a:hover {
    transition: all 0.3s ease;
    color: rgba(226, 227, 199, 0.8);
    text-decoration: none;
}


@media (max-width: 1100px) {
    .blogi {
        flex-direction: column;
        text-align: justify;
    }

    .blogi img {
        width: 75%;
    }
}


@media (max-width: 768px) {
    h3 {
        font-size: 25px;
    }
    
    p {
        font-size: 17px;
    }

    .keskmine {
        padding: 30px;
        gap: 40px;
    }


    .mySlides {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
}

