* {
    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;
    margin-bottom: 320px;
    z-index: 1;
    background-color: #030303;
}

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;
}