body{margin:0;}
img,svg{max-width:100%;height:auto;display:block}
a{text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1280px;margin-inline:auto;padding:clamp(12px,2vw,24px)}

.top {
    border-bottom: 2px solid var(--Colors-Gray-100, #F2F4F7);
}
.top .container {
    display: flex;
    justify-content: space-between;
}

.top .logo {
    height: 40px;
}

.site-header {
    text-align: center;
}

.site-header h1 {
    color: var(--Colors-Gray-900, #101828);
    font-family: "Open Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.96px;
}

.site-header p {
    color: var(--Colors-Gray-600, #475467);
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.boxes .box {
    min-width: 393px;
    min-height: 206px;
    padding: 6px;
    text-align: center;
    border-radius: 8px;
    background: var(--white, #FFF);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.boxes .box img {
    margin: 0 auto;
}

.boxes .box h2 {
    color: var(--Colors-Gray-900, #101828);
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.boxes .box div {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.boxes .box div a {
    border-radius: var(--Radius-6px, 6px);
    border: 1px solid var(--Colors-Primary-800, #012074);
    background: var(--Colors-Primary-800, #012074);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    padding: 12px 24px;
    color: var(--Colors-White, #FFF);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.boxes .box div p {
    margin: 0;
    color: var(--Colors-Secondary-800, #012074);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.examples {
    border-top: 1px solid #475467;
    color: var(--Colors-Gray-600, #475467);
    text-align: center;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-top: 128px;
}

.site-footer {
    background: var(--Colors-Gray-800, #1D2939);
    color: var(--Colors-White, #FFF);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    min-height: 84px;
    text-align: center;
}

@media (max-width: 640px) {
    .top .rankomat {
        width: 140px;
    }
    .top .logo {
        width: 120px;
        height: auto;
    }
    .site-header h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .site-header p {
        font-size: 16px;
        line-height: 24px;
    }
    .boxes .box {
        min-height: 216px;
    }
    .boxes .box div {
        flex-direction: column;
        gap: 16px;
    }
    .examples {
        margin-top: 64px;
    }
}

@media (max-width: 480px) {
    .boxes .box {
        min-width: 0;
        width: 90%;
    }
}