body {
    padding: 0;
    margin: 0;
    background-color: #4C385E;
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
    color:white;
    min-height: 100vh;;
}

.discover-main-section {
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.subtitle {
    font-size: 1em;
    width:85%;
    font-weight: 100;
}

.discover-action {
    display: flex;
    flex-direction: column;
    position: relative;

    top:10vh;
}

.discover-cards {
    width: 40vw;
    margin-left: 2rem;
    height: auto;
    max-width: 500px;
}

.icon-section {
    display:flex;
    height: auto;
}

.icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-right: .5rem;
    font-size: .8rem;
    text-align: center;
    padding-bottom: 1em;
    border-radius: 5%;
}

.icon img {
    width: 5em;
    margin-top: .25rem;
    margin-right: .25rem;
    background-color: black;
    border-radius: 5%;
    padding: 1em;
}

.cards {
    flex-grow: 1;
    flex-direction: row;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.card img {
    width: 95%;
    margin-top: 0rem;
    border-radius: 10%;
    padding-right: .4rem;
}

.btn {
    width: 10em;
}

@media (max-width:950px) {
    .subtitle {
        width: 30%;
    }
    .discover-cards {
        margin-top: 1em;
        margin-left: 30%;
    }
}

@media (max-width:500px) {
   .title {
        font-size: 2em;
   }
    .cards {
        min-width: 100%;
    }
    .subtitle {
        width: 85%;
    }
} 

@media (max-width:1000px) {
    .discover-main-section {
        flex-direction: column;
        justify-content: center;
    }
    .cards {
        margin-left: 10%;
    }
    .card img {
        width: 60%;
        padding-right: 0rem;
    }
    .icon img {
        width: 2em;
    }
    .subtitle {
        font-size: .6em;
    }
    .btn {
        font-size: .6em;
        width: 6.5em;
    }
}
@media (max-width:1024px) {
    .subtitle {
        margin-bottom: .5em;
    }
}
