
body{
    margin:0;
    padding:0;
}

div#generalContainer{
    width: 100%;
    position: absolute;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    /* font-family: 'Lato', sans-serif; */
    color: #2c2c2c;
    font-weight: 100;
    background-color: black;
    color: white;
}

img#logoCuervo{
    width: 200px;
    margin: 10px auto 0;
}

h1#cuervoHeader{
    width:100%;
    text-align: center;
    margin: 0;
}

p#projectDescription{
    width: 80%;
    max-width: 1366px;
    margin: 20px auto 0;
    text-align:justify;
}

h2.tittle{
    width: 80%;
    max-width: 1366px;
    margin: 20px auto 0;
    text-align:left;
}

ul#endpointsList{
    width: 80%;
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 1366px;
    margin: 20px auto 0;
    text-align:justify;
}

p.endPointsType{
    width: 170px;
    padding: 10px;
    color: black;
    text-align: center;
    background-color:white;
    border-radius: 5px;
}

p.endPointLegend{
    width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items:flex-start;
    font-size: 16px;
    font-family: 'Montserrat Alternates', sans-serif;
}

span.queryType{
    width: 40px;
    height: 5px;
    padding: 10px;
    color: black;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    border-radius: 10px;
}

span.GET{
    background-color: #ffe600;
}
span.POST{
    background-color: #0059ff;
}
span.PUT{
    background-color: #51ff00;
}
span.DELETE{
    background-color: #ff0c04;
}

P.queryDescription{
    margin-top: 20px;
    font-size: 14px;
    font-style: italic;
}

P.queryDescription span{
    margin-top: 5px;
    font-size: 12px;
    color: #808080;
}

@media screen and (max-width: 768px) {
    p.endPointLegend{
        width: 100%;
        margin-left: auto;
        font-size: 14px;
    }

    p#projectDescription{
        width: 90%;
        font-size: 12px;
    }
    
    ul#endpointsList{
        width: 90%;
    }
}