*{
    margin: 0;
    padding: 0;
    font-family: "PT Sans", sans-serif;
    cursor: default;
}

:root{
    --primaryBlue : #005dbf;
    --secondBlue : rgb(0,180,204);
    --hoverBlue: rgba(0, 180, 204, 0.074);
    --primaryGray: rgb(107,114,128);
    --secondGray: rgb(206,206,206);
    --liteGray: rgb(245, 245, 245);
    --lgFont: 40px;
    --mdFont: 24px;
    --smFont: 16px;
    --rojoAuxiliar : #F39682;
}



.title{
    color: var(--primaryBlue);
    font-size: var(--lgFont);
}

/* h1{
    margin-top: 160px;
} */

h2{
    font-size: var(--mdFont);
    /* margin-top: 12px; */
    color: var(--secondBlue);
}

body{
    display: grid;
    width: 100%;
    place-items: center;
    height: 100vh;
    grid-template-rows: 2fr 3fr;
}

body div:nth-child(1){
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    text-align: center;
    height: 100%;
}

body div:nth-child(2){
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 70%;
    height: 100%;
}

ul{
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
    height: 200px;
    align-items: center;
    margin-top: 60px;

}

ul li{
    width: 240px;
    height: 200px;
    display: grid;
    place-items: center;
}

.cardAtention{
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: var(--mdFont);
    text-align: center;
    border: 1px solid var(--secondGray);
    box-sizing: border-box;
    color: var(--primaryGray);
    font-weight: bold;
    cursor: pointer;
}

.cardAtention:hover{
    background: var(--hoverBlue);
    border: 1px solid var(--hoverBlue);
    color: var(--primaryGray);
}

@media (max-width: 640px){


    .title{
        color: var(--primaryBlue);
        font-size: var(--mdFont);
    }
    
    h2{
        font-size: var(--smFont);
        color: var(--secondBlue);
    }
    
    body div:nth-child(2){
        width: 100%;
        height: 100%;
    }

    ul{
        flex-flow: column nowrap;
    }

    ul li{
        width: 240px;
        height: 53px;
    }


    .cardAtention{
        font-size: var(--smFont);
    }
}

