@import "https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&display=swap";

:root {
    --color-green: #50fa7b;
    --color-fa: yellowgreen;
    --color-button: #8dc318;
}


*{
    margin: 0;
    padding: 0;
    border: 0;
    
}

body{
    font-family: 'Source Sans Pro', sans-serif;
    background: yellowgreen;
    
}

/* INDEX */

.menu li a{
    text-decoration: none;
    color: white;
    padding: 10px;
}

.menu li a:hover{
    color: var(--color-green);
    transition: color 200ms;
    
}


.card-form{
    background: white;
    margin-top: 30px;
    margin-left: 2px;
    padding: 30px;
    border-radius: 50px;
}

.card-form h3, p{
   text-align: center;

}

.card-form h3{
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 70px;
    margin-bottom: 20px;
}

.card-form .create{
    margin-top: 10%;
    margin-left: 35%;
}

.logo{
    width: 170px;
    height: 170px;
    margin-left: 20%;
    margin-top: 1%;
    
}

.modal-body form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}



.modal-body form textarea{
    height: 150px;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* CATEGORIA */

.categoria{
    background: white;
}


.card{
    background-color: rgb(229, 226, 226);
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;

}

.card-image-container img{
    width: 100%;
    border-radius: 10px 10px;
}

.card_content,
.card_info{
    padding: 15px;
    color: black;
    text-align: center;
}

.card_content p{
    font-size: 25px;
    font-weight: bold;
}

.card button{
    margin-left: 30%;
    width: 150px;
    margin-bottom: 10px;
}

header{
    border-bottom: 1px solid #333;
    background: rgba(0,0,0, 0.7);
}

.links {
    text-align: center;
}

.links a{
    color: white;
    font-size: 18px;
    line-height: 28px;
    margin: 0 16px;
    padding-bottom: 3px;
    text-decoration: none;
}

.links a:hover{
    color: var(--color-green);
    transition: color 200ms;
}