@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body{
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    color: #171515;
}
.container{
    max-width: 1240px;
}
.container-sm{
    max-width: 820px;
}
header{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #ACACAC;
    font-weight: 300;
    border-bottom: 1px solid #ECEBEB;
    padding: 4px 0 11px;
    text-align: center;
}
header .btn{
    color: #ffffff;
    background-color: #002E5B;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 16px;
}
h1{
    font-size: 40px;
    color: #171515;
    font-weight: 700;
    margin-bottom: 16px;
}
h1 span, h2 span{
    color: #F39000;
}
h2{
    font-size: 28px;
    color: #002E5B;
    font-weight: 700;
    margin-bottom: 16px;
}
h3{
    font-size: 20px;
    font-weight: 700;
}
.date{
    color: #777777;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 36px;
}
.desc{
    font-size: 24px;
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 400;
}
p{
    margin-bottom: 24px;
}
main{
    padding: 40px 0 60px;
}
.age-block{
    padding: 16px;
    box-shadow: 0px 4px 15px 0px #09305E40;
    margin-bottom: 24px;
    border-radius: 8px;
}
.group-btn{
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.group-btn .button{
    border-radius: 8px;
    background-color: #E5F1FF;
    font-size: 28px;
    font-weight: 500;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    max-width: 250px;
    text-decoration: none;
    color: #171515;
}
.link{
    color: #F39000;
}
p>span{
    color: #002E5B;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}
.btn-link{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #171515;
    text-decoration: none;
    background-color: #F39000;
    padding: 8px;
    display: block;
    margin-top: 36px;
    text-align: center;
}
footer{
    color: #777777;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}
.footer-links{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.footer-links a{
    font-size: 14px;
    color: #09305E;
    font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 560px){
    html, body{
        font-size: 16px;
    }
    h2{
        font-size: 24px;
    }
    .desc{
        font-size: 18px;
    }
    .group-btn{
        flex-wrap: wrap;
    }
}