.about-main {
    background-color: #176B87;
    
}

h1 {
    margin-top: 0;
    font-size: 2.5rem;
    padding-left: 30px;
    padding-top: 10px;
}

.flex-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
}

.card {
    background-color: #64CCC5;
    border: 10px solid #001C30;
    border-radius: 10px;
}

.card > img {
    float: left;
    height: 120px;
    width: 200px;
    margin-right: 10px;
    object-fit: cover;
    background-color: whitesmoke;
}

.game > img {
    object-position: top;
}

p {
    font-size: 1.2rem;
    padding-left: 10px;
    padding-right: 10px;
}

.card a:link, a:visited, a:hover, a:active {
    color: #001C30;
    text-decoration: underline;
}

.top-gradient {
    height: 50px;
    width: 100%;
    background: linear-gradient(to bottom, #001C30, #176B87);
    border-top: 10px solid #001C30;
}

.bottom-gradient {
    height: 50px;
    width: 100%;
    background: linear-gradient(to top, #001C30, #176B87);
    border-bottom: 10px solid #001C30;
}

.return {
    display: inline-block;
    border: 5px solid #001C30;
    background-color: #001C30;
    border-radius: 10px;
    padding: 3px;
    font-size: 1.5rem;
    width: 100px;
    margin-left: 30px;
    font-family: 'Rubik', sans-serif;
}

.return a:link, .return a:visited, .return a:hover, .return a:active {
    color: #dafffb;
    text-decoration: none;
}

@media (max-width: 675px) {
    p {
        font-size: 1rem;
    }
}

@media (max-width: 525px) {
    .card > img {
        display: block;
        float: none;
        height: auto;
        width: 100%;
    }
}