/* @media (prefers-color-scheme: light) {
    ::-webkit-scrollbar-track {
        background: #eeeeee;
    }
    ::-webkit-scrollbar-thumb {
        background: #b0b0b0;
    }
} */

/* @media (prefers-color-scheme: dark) { */
    body, html {
        background-color: #121212;
        color: #E0E0E0;
    }
    a {
        color: #3f9fff;
    }
    a:hover {
        color: #00D7E5;
    }
    ::-webkit-scrollbar-track {
        background: #3c3c3c;
    }
    ::-webkit-scrollbar-thumb {
        background: #6d6d6d;
    }
    hr {
        background-color: #2c2c2c;
    }
    .left-col {
        background-color: #1e1e1e;
    }
/* } */

p {
    font-size: 20px;
    margin: 0;
}

a:hover {
    text-decoration: none;
}

header, footer {
    margin: 40px 0;
}

::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
}

.container {
    max-width: 1140px !important;
}

.col-12 {
    text-align: center;
}

.left-col {
    height: 100%;
    border-radius: 10px;
}

.problem {
    margin-right: 20px;
}

.problem::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f15c\0020";
}
.solution::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f0eb\0020";
}

.name {
    height: 60px;
}

.year {
   font-size: 30px;
   font-weight: 600;
}

.country {
   font-weight: 500;
   padding-bottom: 5px;
}

@media (max-width: 992px) {
    .name {
        height: auto;
    }
    .main-col {
        margin: 10px 0;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .name {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .country {
        font-size: 25px;
    }
}