h1 {
    color: #0241cc;
    margin: 50px 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.info-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--blueGradient);
    color: white;
    border-radius: 20px;
    padding: 20px 25px;
    width: 270px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
}
.info-item img {
    width: 28px;
    height: 28px;
    margin-left: 30px;
}

.info-count {
    color: #cbe100;
    text-align: right;
    font-size: 40px;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1030px;
}

#kz-map {
    width: 800px;
    height: 600px;
    margin-top: 50px;
}

#univers-menu {
    position: absolute;
    background: var(--blueGradient);
    display: none;
    flex-direction: column;
    width: 200px;
    border-radius: 10px;
    overflow-y: scroll;
    max-height: 300px;
}
#univers-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px 10px;
}
#univers-menu hr {
	padding: 0;
	height: 0;
    margin: 0;
	border: none;
	border-top: 1px solid white;
    width: 100%;
}

@media (max-width: 1100px) {
    .info-container {
        width: 95%;
        justify-content: space-around;
    }

    .info-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 900px) {
    #kz-map {
        width: 95%;
        height: auto;
        margin-top: 30px;
    }
}

@media (max-width: 500px) {
    #univers-menu {
        left: 10% !important;
        max-height: 200px;
    }
}