main {
    background-image: url("hero.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--bg-color);
}

.blog-content {
    background-color: var(--accent-color);
    width: 55%;
    margin: 0 auto;
    padding: 2rem;
    min-width: 280px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    margin: 1em 0 1em 0;
    text-align: center;
}

.blog-content h3 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    text-align: center;
}

.blog-content p {
    text-indent: 1em;
    line-height: 1.5;
    margin-bottom: 0.5em;
}

.blog-content ul {
    margin-left: 1em;
}

.blog-content li {
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
}

button {
    margin: 3em auto 0 auto;
}

.content {
    min-height: 100vh;
}

.contacts {
    border: 1px solid #bbb;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
}

.blog-img {
    width: 60%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    margin: 0 auto;
    border: 1px solid #bbb;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .blog-content {
        padding: 2rem;
    }
}