:root {
	--color-blue: #1293d4;
	--color-white: #fff;
	--color-black: #000;
	--color-gray: #24282b;
	--panding: 100px;
	--baground-gray: #35424a;

    --color-buttons-hover: #1d38e8;
    --color-buttons: #495ff1;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.max-width-1400px {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

a {
	text-decoration: none;
    color: var(--color-white);
}

img {
	max-width: 100%;
	height: 100%;
    object-fit: cover;
}

.proyect--picture {
    width: 100%;
    height: 100%;
    border-bottom: #00000052 2px solid;
}

header {
    background: var(--color-blue);
    color: var(--color-white);
    width: 100%;
    padding: 30px 100px 0px;
    height: 100px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;

    h1{
        width: 100%;
    }

}

main.main--proyects {
    padding: 100px 100px;
    height: 100%;
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.section {
    display: grid;
    gap: 20px;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(150px, 1fr));
}

.card--proyect{
    border-radius: 20px;
    overflow: hidden;
    border: #00000052 1px solid;
    transition: 500ms;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    max-height: 320px;
    gap: 10px;
    padding-bottom: 10px;
    &:hover{
        scale: 1.05;
        box-shadow: 0px 0px 10px 0px #ffffff52;
        cursor: pointer;
    }
}

span.incomplete{
    color: red;
    font-size: 0.8rem;
    font-weight: bold;
}

.card--proyect a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
	background: var(--color-buttons);
	color: var(--color-white);
	border: none;
    border-radius: 8px;
	height: 50px;
	width: 150px;
    transition: 200ms;
    &:hover{
        cursor: pointer;
        background: var(--color-buttons-hover);
    }
}

footer {
    background: var(--color-blue);
    color: var(--color-white);
    width: 100%;
    padding: 0px 100px;
    height: 100px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;

    p{
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
    }
}