main{
    padding: 0 6%;
    /* color: white; */ /* Change for dark and light */
    transition: all 0.5s;
}

main h1{
    font-size: 1.8em;
}

main p{
    font-size: 1.1em;
}

main a{
    color: #0081ff;
    text-decoration: none;
}

.intro-div{
    margin-bottom: 20px;
}

.intro-div *{
    padding: 0.5em 0;
    line-height: 1.6;
}

.card-results{
    display: flex;
    flex-wrap: wrap;
    
}

.card-a{
    text-decoration: none;
    color: black; /* Change for dark and light */
    margin-bottom: 12px;
}

.card{
    margin:5px;
    padding: 20px 10px;
    background-color: white; /* Change for dark (#3f3f3f) and light */
    border:1px solid black;
    border-radius: 9px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}

.card-enclosed{
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card-icon-div{
    background-color: blue;
    display: inline;
    padding: 6px 18px;
    padding-top:1.5em;
    border-radius: 8px;
}

.card-icon{
    color:white;
}

.card-title{
    display: inline;
    padding-top: 16px;
}

.card-description{
    padding-top: 12px;
    text-align: center;
}

@media only screen and (max-width: 720px){
    .card-a{
        width: 100%;
    }
}

@media only screen and (min-width: 721px) and (max-width: 1275px){
    .card-results{
        justify-content: space-between;
    }
    
    .card-a{
        width: 45%;
    }
}

@media only screen and (min-width: 1276px){
    

    .card-a{
        width: 30%;
        margin-right: 3.3%;
    }
    
}
