* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    min-height: 100vh;
}

.block {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.block h1 {
    color: olive;
    font-size: 3rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.block p {
    font-size: 1.6rem;
    line-height: 30px;
    margin-bottom: 20px;
    padding: 0 20px;
    text-align: justify;
}

.block .photo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: auto;
    margin-bottom: 20px;
    border: 8px solid olive;
}

.block .photo img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 900px) {
    .block .photo {
        width: 90%;
    }
}