

body {
    background-color: #f4f4f4;
    font-family: 'Helvetica', sans-serif;
    padding: 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item img {
    width: 100%;
    height: 100%;     
    object-fit: cover; 
    display: block;
}

.tall img {
  width: 50%;
  height: auto;
}


.full-width {
    grid-column: span 2;
}

.color-block {
    background-color: #f7a04d; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d2232a;
    text-align: right;
    padding: 40px;
    font-size: 80%;
}

.text-section {
    background: white;
    padding: 30px;
}

.grid-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
}

footer a {
    font-size:  160%;
    text-decoration: none;
    color: #546880;
  }

  footer a:hover {
    color: blue;
    text-shadow: 0 0 5px white;
  } 

 footer {
    background-color: #f7a04d;
    padding: 1em;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: em;
  }