.flex_container {
    display: flex;
    justify-content: center;
}

.content_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
}

.content_container > p {
    font-family: 'acumin-pro';
    font-style: normal;
    font-size: 12px;
    line-height: 14px;
    color: #0E1427;
}

.icon {
    height: 15px;
    width: 15px;
    position: absolute;
    margin-left: 3px;
}

ul {
    list-style: none;
}

ul li::before {
    content: "■";
    color: #59C09B;
    display: inline-block;
    margin-left: 0.4em;
    line-height: 14px;
}

li > div {
    margin: -14px 0 13px 15px;
}

h2 {
    font-family: 'acumin-pro', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    color: #0E1427;
}

h5 {
    font-family: 'acumin-pro', sans-serif;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #0E1427;
}

#title_container {
    margin-left: -10%;
}

.margin_left {
    margin-left: 5%;
}

#reload_btn {
    width: 96%;
    font-size: 16px;
}

#description_container {
    align-content: flex-start;
    margin-top: 30px;
    width: 90%
}

#system_container {
    margin-top: 36px;
    width: 90%;
}

#system_container > div {
    margin-top: 10px;
    width: 90%;
}

#bottom_container {
    margin-top: 60px;
}

.loader {
    margin-left: 40%;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #0E1427;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (min-height: 900px) /* height >= 900 px for big monitor*/
{
    .flex_container {
        margin-bottom: 30%;
    }
}

@media screen and (min-height: 700px) and (max-height: 899px) /*  700 <= height <= 899 px */
{
    .flex_container {
        margin-bottom: 20%;
    }
}

@media screen and (max-height: 699px) /* height <= 699 px */
{
    .flex_container {
        margin-bottom: 10%;
    }
}

@media only screen and (max-width: 400px) { /* width <= 400 px */
    .content_container {
        width: 90%;
    }

    #title_container {
        margin-left: 0;
    }
}
