* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --main-color: rgb(86, 72, 117);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: var(--main-color);
    font-family: Arial, Helvetica, sans-serif;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: calc(100% - 40px);
    max-width: 1200px;
    height: calc(100% - 40px);
    max-height: 600px;
    padding: 40px;
    box-shadow: inset 0 0 10px 10px var(--main-color);
    background-color: #fff;
}

.img {
    width: 100px;

}

.title {
    letter-spacing: 1px;
}

.text {
    color: var(--main-color);
    text-indent: 30px;
    line-height: 140%;
    font-size: 16px;
    font-weight: bold;
}

.link {
    color: var(--main-color);
    line-height: 140%;
    font-size: 14px;
    font-weight: bold;
}

@media (min-width: 600px) {
    .section {
        gap: 50px;
        width: calc(100% - 60px);
        height: calc(100% - 60px);
        max-height: 700px;
        padding: 80px;
    }
}