.box {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 5px 15px;
}

.blue-box {
    background-color: blue;
}

.white-box {
    background-color: white;
}

.row-block {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
}

.row-block img {
    width: 50px;
    height: 50px;
}

.redirect-blocks {
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 50px;
}

.redirect-blocks > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

h2, p {
    text-align: center;
    font-size: 30px;
}

h2 {
    color: #900903;;
}

li {
    font-size: 20px;
}

h1 {
    text-align: center;
    color: #900903;
    font-size: 45px;
}

a {
    text-decoration: none;
    color: black;
    font-size: 20px;
}

.blue-box h2, .blue-box p, .blue-box li {
    color: white;
}

@media screen and (max-width: 900px) {
    .redirect-blocks {
        grid-template-columns:  1fr;
    }
}