.toppers-section {
    text-align: center;
    color: #060026;
    background-image: url("../img/white-bg.jpg");
    background-size: cover;
    height: auto;
    padding: 2em 0em;
}
.toppers-section h1 {
    text-transform: uppercase;
    margin-bottom: 60px;
    font-size: 40px;
}
.topper-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: auto;
    margin-top: 5rem;
}
.card {
    margin: 0rem;
}
.topper-container img {
    width: 15em;
    height: 15em;
    border-radius: 50%;
}
.rank1 {
    position: relative;
    top: -140px;
}
.rank2 {
    position: relative;
    top: -50px;
}
.rank3 {
    position: relative;
    top: -50px;
}


@media screen and (max-width: 750px) {
    .toppers-section h1 {
        margin-bottom: 0px;
    }
    .topper-container {
        display: flex;
        flex-direction: column;
    }
    .rank1,
    .rank2,
    .rank3 {
        position: static;
    }
    .card {
        padding-bottom: 4rem;
    }
}