* {
    box-sizing: border-box;
}

main * {
    margin-block-start: 0.5rem;
    margin-block-end: 0.5rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.app-icon {
      width: 250px;
      height: 250px;
      object-fit: contain;
      border-radius: 56px;
      flex-shrink: 0;
  }

@media (max-width: 1024px) {
    .header-content {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    
    .nav-links {
        background-color: #402B00;
    }
    
    .nav-links a {
        color: color(display-p3 0.981 0.817 0.429) ;
    }
    
    .hamburger span {
        background-color: var(--color-gold);
    }
    
    h1 img {
        max-height: 8rem;
    }
}