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

html, body {
    font-family: "PT Serif", serif;
    scroll-behavior: smooth;
}

a {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}


.top-header {
    width: 100%;
    background: #22608A;
    padding: 3px 0;

    display: flex;
    justify-content: center;
}

.top-header p {
font-weight: 400;
font-size: 14px;
line-height: 19px;

color: #ACACAC;
}

.bottom-header {
    padding: 8px 310px;
    border-bottom: 1px solid #DD993340;

    display: flex;
    justify-content: flex-end;
}


.bottom-header a {
font-weight: 400;
font-size: 16px;
line-height: 21px;

color: #FFFFFF;

padding: 9.5px 16px;

background: #DD9933;
border-radius: 4px;

display: flex;
align-items: center;
justify-content: center;

}


footer {
    padding: 24px 100px;
    background: #F3F4F5;

    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

footer p {
font-family: 'Poppins';
font-weight: 400;
font-size: 16px;
line-height: 24px;

color: #556065;
}

.footer-list {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;

    
font-family: 'Poppins';
font-weight: 400;
font-size: 16px;
line-height: 24px;

color: #556065;
}



@media (max-width: 910px) {

    .bottom-header {
    padding: 8px 16px;
}


footer {
    padding: 24px 16px;
}

}


main {
    padding: 36px 16px 60px;

    display: flex;
    justify-content: center;
}

.main-container {
    max-width: 820px;
}


.date {
font-weight: 400;
font-size: 14px;
line-height: 19px;

color: #777777;

margin-bottom: 36px;
}

.headline-1 {
font-weight: 700;
font-size: 40px;
line-height: 53px;

color: #22608A;
}

.headline-2 {
font-weight: 400;
font-size: 28px;
line-height: 37px;

color: #22608A;

margin: 24px 0 16px;
}


.main-text {
font-weight: 400;
font-size: 18px;
line-height: 24px;

color: #171515;
}

.img-container {
    margin: 24px 0;
    width: 100%;
}

.img-container img {
    width: 100%;
}


.block {
    margin-top: 24px;

    padding: 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;


background: #FFFFFF;
box-shadow: 0px 4px 15px rgba(34, 96, 138, 0.25);
border-radius: 8px;
}

.block a {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 8px 16px;
gap: 8px;

background: #DD9933;
border-radius: 4px;

font-weight: 400;
font-size: 16px;
line-height: 21px;

color: #FFFFFF;
}

.block-text-container {
    width: 100%;
}

.block-title {
font-weight: 400;
font-size: 28px;
line-height: 37px;

color: #DD9933;

margin-bottom: 16px;
}

.block-age-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 8px;
}


.block-age-buttons a {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 20px;
gap: 10px;

background: #EEF8FF;
border-radius: 8px;

font-weight: 400;
font-size: 40px;
line-height: 53px;
text-align: center;

color: #171515;
}

.quite-block {
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 16px;
gap: 10px;

background: #FFEACA;
border-radius: 8px;

margin-top: 24px;
}

.author {
    margin: 16px 0 8px;

font-weight: 700;
font-size: 20px;
line-height: 26px;

color: #22608A;
}

@media (max-width: 910px) {

.headline-1 {
    font-size: 28px;
    line-height: 130%;
}

.headline-2 {
    font-size: 24px;
    line-height: 130%;
}

.main-text {
    font-size: 16px;
    line-height: 130%;
}

.block a {
    font-size: 16px;
    line-height: 130%;

    width: 100%;

    text-align: center;
    padding: 9.5px 16px;
}

.block-age-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.block-age-buttons a {
    grid-column: span 1;
    font-size: 40px;

    padding: 20px 24px;
}

.block-title {
    font-size: 24px;
    line-height: 130%;
}

.author {
    font-size: 18px;
    line-height: 130%;
}

}

ul {
    margin-left: 16px;
}






