h3 {
    font-family: 'oswald';
    font-size: 70px;
    margin:0px 20px;
}

ul{
    list-style-type: none
}

#athlete-rankings {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: auto;
}

.athlete{
    display: flex;
    align-items: center;
    margin: 40px 20px;
    padding: 20px;
    
    border-radius: 20px;
    background: linear-gradient(to right, #fff9f9, #3eb4f4);
    width: 70vw;
    height: auto;
}

.athlete-photo {
    border-radius: 100px;
    width: 150px;
    height:150px;
}

.athlete-name{
    margin: 20px;
    color: white;
}

@media (max-width: 425px) {
    .athlete{
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin: 60px 30px;
        width: 60vw;
    }
}