* {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #ecf0f1;
    margin-bottom: 15px;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #bdc3c7;
    margin-bottom: 10px;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #ecf0f1;
}

body {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: linear-gradient(135deg, #3498db, #8e44ad);
}

header {
    margin: 10px;
    text-align: center;
}

main {
    margin-left: 15vw;
    width: 70vw;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
}

main div {
    width: 200px;
    height: 160px;
    cursor: pointer;
    border-radius: 25px 25px 25px 25px;
    background-color: #3498db;
    text-align: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    transition: scale 0.3s;
    margin: 10px;
}

main div:hover {
    scale: 1.1;
}

.imgProyecto {
    width: 200px;
    height: 120px;
    border-radius: 25px 25px 0px 0px;
    object-fit: cover;
}

footer {
    margin: 10px;
    text-align: center;
}

footer i {
    color: #a2f5bf;
    margin-right: 8px;
}
