/* CONFIGS GERAIS */

@import url('https://fonts.googleapis.com/css2?family=Chilanka&family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    margin: 0;
    font-family: "Fira Sans Condensed";
}

/* =============================================================== */
/* MAIN */

@media (min-width: 800px) {

    .main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: fit-content;
        width: 100%;
        margin: 7% 0 5% 0;
    }
    
    .editaisTxtBtns {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: 70%;
        margin: 0 15% 0 15%;
    }
    
    #download {
        font-size: 16px;
        font-weight: 500;
    }
    
    .editais {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .editaisLin {
        width: 100%;
        margin: 0 0 2.5% 0;
        display: flex;
        justify-content: space-between;
    }
    
    .editaisBtn1 {
        text-align: center;
        font-family: "Fira Sans Condensed";
        background-color: #33E46D;
        font-size: 15px;
        font-weight: 400;
        width: 20%;
        border: 0;
        border-radius: 20px;
        padding: 1%;
    }
    
    .editaisBtn2 {
        text-align: center;
        font-family: "Fira Sans Condensed";
        background-color: #000000;
        font-size: 15px;
        font-weight: 400;
        width: 20%;
        border: 0;
        border-radius: 20px;
        padding: 1%;
    }

}

@media (max-width: 799px) {

    .main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: fit-content;
        width: 100%;
        margin: 7% 0 5% 0;
    }
    
    .editaisTxtBtns {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: 70%;
        margin: 0 15% 0 15%;
    }
    
    #download {
        font-size: 16px;
        font-weight: 500;
    }
    
    .editais {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .editaisLin {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .editaisBtn1 {
        text-align: center;
        font-family: "Fira Sans Condensed";
        background-color: #33E46D;
        font-size: 15px;
        font-weight: 400;
        width: 100%;
        border: 0;
        border-radius: 20px;
        padding: 2%;
    }
    
    .editaisBtn2 {
        text-align: center;
        font-family: "Fira Sans Condensed";
        background-color: #000000;
        font-size: 15px;
        font-weight: 400;
        width: 100%;
        border: 0;
        border-radius: 20px;
        padding: 2%;
    }

}