* {
    box-sizing: border-box;
}

html,
body {
    display: grid;
    grid-template-rows: auto 1fr;

    background-color: #030303;
    margin: 0;
    height: 100%;

    font-family: 'Helvetica', sans-serif;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.2rem;
}

main {
    position: relative;
    min-height: 100vh;
    margin-bottom: 320px;
    z-index: 1;
    background-color: #030303;
}

@media (max-width: 1024px) {
    main {
        margin-bottom: 400px;
    }
}

@media (max-width: 768px) {
    main {
        margin-bottom: 480px;
    }
}

@media (max-width: 480px) {
    main {
        margin-bottom: 560px;
    }
}

footer {
    position: fixed;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    background-color: #4c4c4c;
    padding: 16px;
}

a {
    color: #cccccc;
  }
  
  a:hover {
    color: #787878;
    color: #ffffff;
    opacity: 0.6;
    text-decoration: underline;
    transition: 0.3s;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.experience-point {
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.experience-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.experience-bullets {
    margin-top: 0.5rem;
}

.experience-bullets > * + * {
    margin-top: 0.25rem;
}

.experience-entry {
    color: #c3c3c3; /* zinc-300 */
    font-size: 1rem;
}

.experience-entry + .experience-entry {
    margin-top: 1.5rem; /* space-y-6 */
}

.experience-entry .experience-title {
    font-weight: bold;
    font-size: 1rem;
    color: #ffffff;
}

.experience-entry .experience-role {
    font-size: 1rem;
    color: #ffffff;
}

.experience-entry .experience-meta {
    font-size: 0.875rem;
}

.resume-divider {
    border: none;
    border-top: 1px solid #52525b; /* zinc-600 */
    margin: 1.5rem 0;
    width: 100%;
}

.writing-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.writing-card-image {
    background-color: #d4d4d8; /* zinc-300 */
    width: 100%;
    height: 6rem;
    overflow: hidden;
}