/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: monospace;
    line-height: 1.6;
    background: #000000;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(168, 168, 168, 1) 2.5%, rgba(168, 168, 168, 1) 7%, rgba(0, 0, 0, 1) 20%); */
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 1) 22%);
    /* background: rgba(30, 10, 0, 1); */

}

header {
    text-align: center;
    padding-top: .75rem;
    padding-bottom: 1rem;
    /* background: linear-gradient(180deg, rgb(84, 144, 88) 0%, rgba(30, 10, 0, 1) 100%); */
}


footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #f8f8f8;
}


main {
    color: #f8f8f8;
    max-width: 800px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.projects-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    align-content: center;}

.projects-list a {
    /* remove link styling */
    color: inherit;
    text-decoration: none;
}

.project-item {
    margin: 1rem;
    /* padding: 1rem; */
    /* border-radius: 10px; */
    transition: transform 0.2s;
    max-width: 300px;
    display: grid;
}

.project-item .text {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, .9) 100%);
    padding: 1.5rem;
    margin-top: 13rem;
    grid-column-start: 1;
    grid-row-start: 1;
}

.project-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    grid-column-start: 1;
    grid-row-start: 1;
}

.glassbox {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.30);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.3px);
    -webkit-backdrop-filter: blur(2.3px);
}